Im confused. Using code like this
input(event):
#bound to spacebar and game controller button a.
if event.isactionpressed("jump"):
do stuff..
_process:
#bound to ctrl and game controller button b.
Input.isaction_pressed("fire"):
do stuff
If using the game controller I can hold down fire and press jump as many times just fine. But on the keyboard if I hold down ctrl and press space I don't jump at all. If I hold down the fire button on the controller I can press space on the keyboard just fine.
Whats going on?