Add XRSession::requestHitTestSource()

This commit is contained in:
Manish Goregaokar 2020-04-10 15:30:13 -07:00
parent f1d6a89150
commit 1b07b77323
9 changed files with 131 additions and 22 deletions

View file

@ -82,6 +82,10 @@ impl XRRay {
Ok(Self::new(&window.global(), Ray { origin, direction }))
}
pub fn ray(&self) -> Ray<ApiSpace> {
self.ray
}
}
impl XRRayMethods for XRRay {