Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/overlay.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1099,7 +1099,8 @@ impl vr::IVROverlay028_Interface for OverlayMan {
_: *mut vr::ETrackingUniverseOrigin,
_: *mut vr::HmdMatrix34_t,
) -> vr::EVROverlayError {
todo!()
crate::warn_unimplemented!("GetOverlayTransformAbsolute");

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If we're not going to actually implement it, we should at least put sane values in the output universe and matrix. We do have the transform stored in overlays though, we can grab it from there.

vr::EVROverlayError::None
}
fn SetOverlayTransformAbsolute(
&self,
Expand Down
Loading