-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathconfig.json
64 lines (64 loc) · 999 Bytes
/
config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"input": [
{
"type": "standard",
"controls": [
{
"type": "keyboard",
"config": {
"z": "a",
"x": "b",
"shift": "select",
"return": "start",
"up": "up",
"down": "down",
"left": "left",
"right": "right"
}
}, {
"type": "gamepad",
"config": {
"index": 0,
"buttons": {
"0": "b",
"1": "a",
"2": "a",
"3": "b",
"8": "select",
"9": "start"
},
"axes": {
"0": "horizontal",
"1": "vertical",
"4": "horizontal",
"5": "vertical"
}
}
}
]
},
{
"type": "standard",
"controls": {
"type": "gamepad",
"config": {
"index": 1,
"buttons": {
"0": "b",
"1": "a",
"2": "a",
"3": "b",
"8": "select",
"9": "start"
},
"axes": {
"0": "horizontal",
"1": "vertical",
"4": "horizontal",
"5": "vertical"
}
}
}
}
]
}