diff --git a/src/input.rs b/src/input.rs index 6ae2959..eac2096 100644 --- a/src/input.rs +++ b/src/input.rs @@ -7,11 +7,11 @@ type XrPose = (Vec3, Quat); #[derive(Clone, Resource)] pub struct XrInput { - action_set: xr::ActionSet, - right_action: xr::Action, - left_action: xr::Action, - right_space: Arc, - left_space: Arc, + pub action_set: xr::ActionSet, + pub right_action: xr::Action, + pub left_action: xr::Action, + pub right_space: Arc, + pub left_space: Arc, pub stage: Arc, }