23 lines
892 B
Plaintext
23 lines
892 B
Plaintext
; Each action maps to a comma-separated list of gamepad buttons - add as many as you like to
|
|
; the same action. Recognized tokens (standard GLFW gamepad mapping): gp_a, gp_b, gp_x, gp_y,
|
|
; gp_left_bumper, gp_right_bumper, gp_left_trigger, gp_right_trigger (analog triggers, treated
|
|
; as pressed past a threshold), gp_back, gp_start, gp_guide, gp_left_thumb, gp_right_thumb,
|
|
; gp_dpad_up, gp_dpad_down, gp_dpad_left, gp_dpad_right. The left stick always drives movement
|
|
; directly (not rebindable here) - see engine/gamepad.py's AXIS_LEFT_X/AXIS_LEFT_Y.
|
|
|
|
[actions]
|
|
leap = gp_a
|
|
block = gp_left_bumper
|
|
|
|
[hands]
|
|
activate_right_hand = gp_right_bumper
|
|
activate_left_hand = gp_x
|
|
activate_right_hand_2 = gp_right_trigger
|
|
activate_left_hand_2 = gp_left_trigger
|
|
|
|
[abilities]
|
|
select_ability_1 = gp_dpad_up
|
|
select_ability_2 = gp_dpad_right
|
|
select_ability_3 = gp_dpad_down
|
|
select_ability_4 = gp_dpad_left
|