Handle SetTargetRayMode and SetHandedness

This commit is contained in:
Manish Goregaokar 2020-01-13 15:13:08 +05:30
parent e9221e6ce0
commit 9c34a6585b
9 changed files with 64 additions and 17 deletions

View file

@ -295,6 +295,9 @@ impl XRSession {
XREvent::RemoveInput(id) => {
self.input_sources.remove_input_source(self, id);
},
XREvent::UpdateInput(id, source) => {
self.input_sources.add_remove_input_source(self, id, source);
},
}
}