Interface of getting Controller joystick travel range
Hello, I’m fairly new to the Meta Spatial SDK, and while reviewing the Controller Input documentation, I couldn’t find any interface that allows retrieving the joystick’s travel range. What I came across were examples treating joystick directions as “Buttons” (like ButtonThumbRL). However, what I’m trying to do is map the joystick’s travel to an attribute like “velocity.” Is there any way to access this information? If I’ve missed something, my apologies, thank you!208Views0likes5CommentsConfiguring multiple joysticks
Hello guys! Sorry for my bad english I have some questions : 1) XBOX controller have Triggers (L2/R2), and I want for example to perform some action. L1/R1 i can switch between items. 2) Samsung Gamepad EI-GP20 dont have (L2/R2) and I can to perform some action (L1/R1), and switch between items D-Pad Left/Right, but then if I use XBOX (L2/R2) they are not involved Example : NextToogle = OVRInput.GetUp(OVRInput.Button.DpadRight) ; PreviosToogle = OVRInput.GetUp(OVRInput.Button.DpadLeft); if (NextToogle) // todo smth and if the controller XBOX - use (L1/R1) to swirch and (L2/R2) for action if EI-GP20 - use D-Pad Left/Righ and (L1/R1) for action How can i do this? I hope you understand me...473Views0likes0Comments