05-26-2017 06:35 AM
Solved! Go to Solution.
05-26-2017 03:16 PM
// returns true if the primary button (typically “A”) is currently pressed.
OVRInput.Get(OVRInput.Button.One);
// returns true if the "A" button is pressed on the Right Touch Controller.
OVRInput.Get(OVRInput.Button.One, OVRInput.Controller.RTouch);
// returns a float of the Hand Trigger’s current state on the Left Oculus Touch controller.
OVRInput.Get(OVRInput.Axis1D.PrimaryHandTrigger, OVRInput.Controller.LTouch);
05-26-2017 03:16 PM
// returns true if the primary button (typically “A”) is currently pressed.
OVRInput.Get(OVRInput.Button.One);
// returns true if the "A" button is pressed on the Right Touch Controller.
OVRInput.Get(OVRInput.Button.One, OVRInput.Controller.RTouch);
// returns a float of the Hand Trigger’s current state on the Left Oculus Touch controller.
OVRInput.Get(OVRInput.Axis1D.PrimaryHandTrigger, OVRInput.Controller.LTouch);
05-26-2017 05:41 PM
06-28-2018 02:40 AM
07-01-2018 09:04 PM