How do I get feedback from a VR joystick? For example if I wanted my VR character to move depending on the direction the joystick is being pushed? I use an oculus quest 2 VR headset.
3 Likes
UserInputService / ContextActionService are the services you will be wanting to use for this.
Left Thumbstick = Enum.KeyCode.Thumbstick1
Right Thumbstick = Enum.KeyCode.Thumbstick2
To get the position of the thumbstick is simple.
Input.Position
If you do not know how to use UIS or CAS, then I would recommend looking into these first.
UserInputService
ContextActionService
Best of luck on your VR development journey.
2 Likes
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.