My current control system uses context action service, i’ve binded the thumbstick to a function. but the prints i have in the function never show, is there anyway i can get the input from thumbstick using context action service, i want to get the direction.
The function:
The Binding:
I had to go the gamepad module in the playermodule. and change the return type from sink to pass. i havent found how to get the direction yet. but. i’ve get prints from the function now. im not sure why it doesnt return pass in the first place. it’s not odd that a developer would need input from the thumbstick using context action service. it works fine as well. no glitches
module:
Before:
After:
1 Like
I generally require the ControlModule and then do :GetMoveVector() on a renderstep to get input. It returns a Vector3 of the movement input with deltas and works for all platforms.
1 Like