react-gamepad
Version:
A Gamepad handler as a React component
36 lines • 466 B
JavaScript
export default {
buttons: [
'A',
'B',
'X',
'Y',
'LB',
'RB',
'LT',
'RT',
'Back',
'Start',
'LS',
'RS',
'DPadUp',
'DPadDown',
'DPadLeft',
'DPadRight',
],
axis: [
'LeftStickX',
'-LeftStickY',
'RightStickX',
'-RightStickY',
],
buttonAxis: [
null,
null,
null,
null,
null,
null,
'LeftTrigger',
'RightTrigger',
],
}