-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathconfig.json
68 lines (68 loc) · 1.35 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"video": {
"width": "auto",
"height": "auto",
"fullscreen": true,
"antialiasing": 1,
"vsync": true,
"recursive_portal": 3
},
"mouse": {
"sensitivity": 3.00,
"hide_portals_by_click": true,
"cursor_visibility": false,
"bindings": {
"look_analogue": ["mouse_move"],
"fire_pimary": ["mouse_button_left"],
"fire_secondary": ["mouse_button_right"]
}
},
"keyboard": {
"bindings": {
"jump": ["Space", "Backspace"],
"forward": ["W", "Up"],
"back": ["S", "Down"],
"left": ["A", "Left"],
"right": ["D", "Right"],
"quit": ["Q"],
"pause": ["Escape"]
}
},
"controller": {
"bindings": {
"jump": ["button_a"],
"move_analogue": ["stick_left"],
"look_analogue": ["stick_right"],
"fire_pimary": ["trigger_right"],
"fire_secondary": ["trigger_left"]
},
"sensitivity": {
"stick_left": 1.0,
"stick_right": 0.05
},
"dead_zone": {
"stick_left": 0.4,
"stick_right": 0.4,
"trigger_left": 0.3,
"trigger_right": 0.3
}
},
"sound": {
"enable": true
},
"logging": {
"loglevel": "debug"
},
"debug": {
"gl_context_debug": false,
"profiler": {
"enable": false
},
"wireframes": {
"enable": false
},
"flying": {
"enable": true
}
}
}