Gamepad ABXY

I’m trying to add Gamepad support, I have managed to get my Xbox one controller to connect and register button clicks and what not but I can’t get it to register the ABXY buttons and I have no clue on how I could do that, Help please :slight_smile:

https://raw.githubusercontent.com/subsoap/definput/master/definput/all.input_binding

Add this input binding to your project, in any script with input acquired print the action ids to see if they show up when you press the gamepad buttons.

I think these ones are for abxy on an xbox controller

gamepad_trigger {
input: GAMEPAD_RPAD_LEFT
action: “gamepad_rpad_left”
}
gamepad_trigger {
input: GAMEPAD_RPAD_RIGHT
action: “gamepad_rpad_right”
}
gamepad_trigger {
input: GAMEPAD_RPAD_DOWN
action: “gamepad_rpad_down”
}
gamepad_trigger {
input: GAMEPAD_RPAD_UP
action: “gamepad_rpad_up”
}

2 Likes

how do i print the id’s again?

Nevermind, got it working, Thank you very much, you are always such a great help :slight_smile:

4 Likes