We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25e3d60 commit f046b59Copy full SHA for f046b59
Packages/webxr-interactions/Runtime/Scripts/ControllerInteraction.cs
@@ -23,7 +23,7 @@ public class ControllerInteraction : MonoBehaviour
23
public Transform handJointPrefab;
24
private bool handJointsVisible = false;
25
26
- public bool useInputProfile = true;
+ [SerializeField] private bool useInputProfile = true;
27
28
public GameObject inputProfileObject;
29
public GameObject inputProfileModelParent;
@@ -144,6 +144,11 @@ public void SetUseInputProfile(bool value)
144
useInputProfile = value;
145
}
146
147
+ public bool GetUseInputProfile()
148
+ {
149
+ return useInputProfile;
150
+ }
151
+
152
private void SetControllerVisible(bool visible)
153
{
154
controllerVisible = visible;
0 commit comments