Hi
I am relatively new to Unity and especially this new Input System so please bear with me if this is something obvious.
I have setup a button press action for Jump as follows:
And in code I am referencing/actioning it as follows:
if (Input.GetButtonDown("Jump"))
{
...
}
However, the player will only ever jump when I actually press the north button. This is the case for no matter which button I set in the Input Controller (East, West, South and North). The player will only ever jump when the North button is pressed.
Please let me know if there is any more info I could provide but am wondering if anyone else has experienced this. I am at a bit of a loss here. I am using an X-Box USB controller (it is probably about 8 years old by now) but not expecting that to be a problem.