I’m trying to learn the new InputSystem. I have made a control for speeding / braking with the up / down arrow keys. I made a “driving” map with key bindings for the up and down arrow keys.
This works! But the problem is, these key presses now only return -1, 0 or 1.
With the old input system and getAxis() you would get a smooth transition that slowly goes back from 1 to 0 instead of being either 0 or 1.
Even setting the action to “value” and “axis” has no effect, see screenshot.
How can I get smooth transitions in the new inputSystem?
I know you can write your own custom Input processor Processors | Input System | 1.0.2 but I’ve never done that and I’m not sure what one would look like that does what you want.
You’ll have to do it yourself in your script, or go back to the old input system.