-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.json
49 lines (47 loc) · 1.13 KB
/
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
{
"game": {
"name": "TEMPLATE",
"menu_text": "TEMPLATE is a game by Citizen of Mêlée",
"splash_screens": 1,
"controllers": 4,
"allow_keyboard": true,
"allow_gamepad": true
},
"controls": {
"menu": {
"movement": [
["analogue", "Move Horizontal", "Move Vertical"],
["digital", "Left", "Right", "Up", "Down"]
],
"buttons": {
"click": "Confirm",
"cancel": "Cancel"
}
},
"gameplay": {
"pause": "Pause"
},
"digital": [
["Up", "up"],
["Down", "down"],
["Left", "left"],
["Right", "right"],
["Shoot", "x"],
["Confirm", "a"],
["Cancel", "b"],
["Pause", "start"]
],
"analogue": [
["Move Horizontal", "left_analogue_stick_x", "2button"],
["Move Vertical", "left_analogue_stick_y", "2button"],
["Shoot Horizontal", "right_analogue_stick_x", "range"],
["Shoot Vertical", "right_analogue_stick_y", "range"],
["Shoot Left", "left_trigger", "1button"],
["Shoot Right", "right_trigger", "1button"]
]
},
"window": {
"width": 960,
"height": 640
}
}