From 96ab84e972bdf2c3a83d14a850075a0dd7aea4b7 Mon Sep 17 00:00:00 2001 From: MalekiRe Date: Thu, 7 Sep 2023 19:15:05 -0700 Subject: [PATCH] made the XrInput struct fields public --- src/input.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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, }