Created
May 20, 2016 03:57
-
-
Save azizLIGHT/109204b4edb63d674139a4d9adf73b89 to your computer and use it in GitHub Desktop.
Rocket League sc-controller profile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"buttons": { | |
"A": { | |
"action": "button(Keys.BTN_GAMEPAD)" | |
}, | |
"B": { | |
"action": "button(Keys.BTN_EAST)" | |
}, | |
"BACK": { | |
"action": "button(Keys.BTN_SELECT)" | |
}, | |
"LB": { | |
"action": "button(Keys.BTN_TL)" | |
}, | |
"RB": { | |
"action": "button(Keys.BTN_TR)" | |
}, | |
"RPAD": { | |
"action": "button(Keys.BTN_THUMBR)" | |
}, | |
"START": { | |
"action": "button(Keys.BTN_START)" | |
}, | |
"STICK": { | |
"action": "button(Keys.BTN_THUMBL)" | |
}, | |
"X": { | |
"action": "button(Keys.BTN_NORTH)" | |
}, | |
"Y": { | |
"action": "button(Keys.BTN_WEST)" | |
} | |
}, | |
"gyro": {}, | |
"pad_left": { | |
"action": "dpad(hatup(Axes.ABS_HAT0Y, 0, 32767), hatdown(Axes.ABS_HAT0Y, 0, -32767), hatleft(Axes.ABS_HAT0X, 0, 32767), hatright(Axes.ABS_HAT0X, 0, -32767))", | |
"click": true | |
}, | |
"pad_right": { | |
"X": { | |
"action": "axis(Axes.ABS_RX)" | |
}, | |
"Y": { | |
"action": "axis(Axes.ABS_RY)" | |
}, | |
"feedback": ["RIGHT", 256], | |
"sensitivity": [1.3, 1.3, 1.0] | |
}, | |
"stick": { | |
"X": { | |
"action": "axis(Axes.ABS_X)" | |
}, | |
"Y": { | |
"action": "raxis(Axes.ABS_Y)" | |
}, | |
"sensitivity": [1.3, 1.3, 1.0] | |
}, | |
"trigger_left": { | |
"action": "axis(Axes.ABS_Z)" | |
}, | |
"trigger_right": { | |
"action": "axis(Axes.ABS_RZ)" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment