Hi there,I'm making an app that uses Hand Tracking and I want the pause
menu to appear when the user does a System Gesture with their
no0n-dominant hand. In the docs it says that I should "poll
Button.Start" which I have tried. This works with the to...
I really misunderstood what the "code" formatting did. here is the code
in a readable format public UnityEvent onUse; void Update() { if
(OVRInput.Get(Button.Start)) { Debug.Log("System Gesture");
onUse.Invoke(); } }