-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.godot
362 lines (346 loc) · 12.9 KB
/
project.godot
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
; Engine configuration file.
; It's best edited using the editor UI and not directly,
; since the parameters that go here are not all obvious.
;
; Format:
; [section] ; section goes between []
; param=value ; assign values to parameters
config_version=4
_global_script_classes=[ {
"base": "Area",
"class": "Checkpoint",
"language": "GDScript",
"path": "res://source/level/Checkpoint.gd"
}, {
"base": "ScatterDistribution",
"class": "DistributionGrid",
"language": "GDScript",
"path": "res://addons/scatter/src/distributions/distribution_grid.gd"
}, {
"base": "ScatterDistribution",
"class": "DistributionUniform",
"language": "GDScript",
"path": "res://addons/scatter/src/distributions/distribution_uniform.gd"
}, {
"base": "ScatterDistribution",
"class": "DistributionUnique",
"language": "GDScript",
"path": "res://addons/scatter/src/distributions/distribution_unique.gd"
}, {
"base": "KinematicBody",
"class": "Enemy",
"language": "GDScript",
"path": "res://source/enemy/Enemy.gd"
}, {
"base": "Node",
"class": "FiniteStateMachine",
"language": "GDScript",
"path": "res://addons/finite_state_machine/source/FiniteStateMachine.gd"
}, {
"base": "Spatial",
"class": "Gear",
"language": "GDScript",
"path": "res://source/items/Gear.gd"
}, {
"base": "CanvasLayer",
"class": "HUD",
"language": "GDScript",
"path": "res://source/hud/HUD.gd"
}, {
"base": "Node",
"class": "MusicBooth",
"language": "GDScript",
"path": "res://addons/audio_booth/source/music/MusicBooth.gd"
}, {
"base": "Spatial",
"class": "PolygonPath",
"language": "GDScript",
"path": "res://addons/polygon_path/polygon_path.gd"
}, {
"base": "Reference",
"class": "PolygonPathDragInfo",
"language": "GDScript",
"path": "res://addons/polygon_path/drag_info.gd"
}, {
"base": "ScatterProfile",
"class": "ProfileJitterSimple",
"language": "GDScript",
"path": "res://addons/scatter/src/profiles/profile_jitter_simple.gd"
}, {
"base": "ScatterProfile",
"class": "ProfilePositionSimple",
"language": "GDScript",
"path": "res://addons/scatter/src/profiles/profile_position_simple.gd"
}, {
"base": "ScatterProfile",
"class": "ProfileRotationSimple",
"language": "GDScript",
"path": "res://addons/scatter/src/profiles/profile_rotation_simple.gd"
}, {
"base": "ScatterProfile",
"class": "ProfileScaleNoise",
"language": "GDScript",
"path": "res://addons/scatter/src/profiles/profile_scale_noise.gd"
}, {
"base": "ScatterProfile",
"class": "ProfileScaleSimple",
"language": "GDScript",
"path": "res://addons/scatter/src/profiles/profile_scale_simple.gd"
}, {
"base": "KinematicBody",
"class": "Robot",
"language": "GDScript",
"path": "res://source/player/Robot.gd"
}, {
"base": "PolygonPath",
"class": "ScatterBase",
"language": "GDScript",
"path": "res://addons/scatter/src/nodes/scatter_base.gd"
}, {
"base": "Reference",
"class": "ScatterCommon",
"language": "GDScript",
"path": "res://addons/scatter/src/common.gd"
}, {
"base": "ScatterResource",
"class": "ScatterDistribution",
"language": "GDScript",
"path": "res://addons/scatter/src/distributions/distribution_base.gd"
}, {
"base": "ScatterBase",
"class": "ScatterDuplicates",
"language": "GDScript",
"path": "res://addons/scatter/src/nodes/scatter_duplicates.gd"
}, {
"base": "PolygonPath",
"class": "ScatterExclude",
"language": "GDScript",
"path": "res://addons/scatter/src/nodes/scatter_exclude.gd"
}, {
"base": "Spatial",
"class": "ScatterItem",
"language": "GDScript",
"path": "res://addons/scatter/src/nodes/scatter_item.gd"
}, {
"base": "ScatterResource",
"class": "ScatterLogic",
"language": "GDScript",
"path": "res://addons/scatter/src/logic/logic_base.gd"
}, {
"base": "ScatterLogic",
"class": "ScatterLogicGeneric",
"language": "GDScript",
"path": "res://addons/scatter/src/logic/logic_generic.gd"
}, {
"base": "ScatterLogic",
"class": "ScatterLogicWall",
"language": "GDScript",
"path": "res://addons/scatter/src/logic/logic_wall.gd"
}, {
"base": "ScatterBase",
"class": "ScatterMultiMesh",
"language": "GDScript",
"path": "res://addons/scatter/src/nodes/scatter_multi_mesh.gd"
}, {
"base": "ScatterResource",
"class": "ScatterProfile",
"language": "GDScript",
"path": "res://addons/scatter/src/profiles/profile_base.gd"
}, {
"base": "Resource",
"class": "ScatterResource",
"language": "GDScript",
"path": "res://addons/scatter/src/scatter_resource.gd"
}, {
"base": "Node",
"class": "Song",
"language": "GDScript",
"path": "res://addons/audio_booth/source/music/Song.gd"
}, {
"base": "Node",
"class": "Sound",
"language": "GDScript",
"path": "res://addons/audio_booth/source/sfx/Sound.gd"
}, {
"base": "Node",
"class": "SoundBooth",
"language": "GDScript",
"path": "res://addons/audio_booth/source/sfx/SoundBooth.gd"
}, {
"base": "Node",
"class": "Stat",
"language": "GDScript",
"path": "res://source/player/stats/Stat.gd"
}, {
"base": "Node",
"class": "State",
"language": "GDScript",
"path": "res://addons/finite_state_machine/source/State.gd"
}, {
"base": "Node",
"class": "StingerContainer",
"language": "GDScript",
"path": "res://addons/audio_booth/source/music/containers/StingerContainer.gd"
}, {
"base": "Node",
"class": "TrackContainer",
"language": "GDScript",
"path": "res://addons/audio_booth/source/music/containers/TrackContainer.gd"
} ]
_global_script_class_icons={
"Checkpoint": "",
"DistributionGrid": "",
"DistributionUniform": "",
"DistributionUnique": "",
"Enemy": "",
"FiniteStateMachine": "",
"Gear": "",
"HUD": "",
"MusicBooth": "",
"PolygonPath": "",
"PolygonPathDragInfo": "",
"ProfileJitterSimple": "",
"ProfilePositionSimple": "",
"ProfileRotationSimple": "",
"ProfileScaleNoise": "",
"ProfileScaleSimple": "",
"Robot": "",
"ScatterBase": "",
"ScatterCommon": "",
"ScatterDistribution": "",
"ScatterDuplicates": "",
"ScatterExclude": "",
"ScatterItem": "",
"ScatterLogic": "",
"ScatterLogicGeneric": "",
"ScatterLogicWall": "",
"ScatterMultiMesh": "",
"ScatterProfile": "",
"ScatterResource": "",
"Song": "",
"Sound": "",
"SoundBooth": "",
"Stat": "",
"State": "",
"StingerContainer": "",
"TrackContainer": ""
}
[application]
config/name="Robo"
run/main_scene="res://source/menu/LevelSelectionMenu.tscn"
[autoload]
Global="*res://source/global/Global.gd"
Devices="*res://source/global/Devices.gd"
Gamestate="*res://source/global/Gamestate.gd"
Music="*res://source/global/Music.tscn"
[display]
window/size/width=1280
window/size/height=720
[editor_plugins]
enabled=PoolStringArray( "audio_booth", "finite_state_machine", "polygon_path", "scatter" )
[input]
jump={
"deadzone": 0.5,
"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":32,"unicode":0,"echo":false,"script":null)
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":0,"pressure":0.0,"pressed":false,"script":null)
]
}
walk_up={
"deadzone": 0.5,
"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":87,"unicode":0,"echo":false,"script":null)
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777232,"unicode":0,"echo":false,"script":null)
]
}
walk_down={
"deadzone": 0.5,
"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":83,"unicode":0,"echo":false,"script":null)
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777234,"unicode":0,"echo":false,"script":null)
]
}
walk_left={
"deadzone": 0.5,
"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":65,"unicode":0,"echo":false,"script":null)
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777231,"unicode":0,"echo":false,"script":null)
]
}
walk_right={
"deadzone": 0.5,
"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":68,"unicode":0,"echo":false,"script":null)
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777233,"unicode":0,"echo":false,"script":null)
]
}
mouse_axis={
"deadzone": 0.5,
"events": [ ]
}
scroll_up={
"deadzone": 0.5,
"events": [ Object(InputEventMouseButton,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"button_mask":0,"position":Vector2( 0, 0 ),"global_position":Vector2( 0, 0 ),"factor":1.0,"button_index":4,"pressed":false,"doubleclick":false,"script":null)
]
}
scroll_down={
"deadzone": 0.5,
"events": [ Object(InputEventMouseButton,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"button_mask":0,"position":Vector2( 0, 0 ),"global_position":Vector2( 0, 0 ),"factor":1.0,"button_index":5,"pressed":false,"doubleclick":false,"script":null)
]
}
debug-left={
"deadzone": 0.5,
"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777354,"unicode":0,"echo":false,"script":null)
]
}
debug-right={
"deadzone": 0.5,
"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777356,"unicode":0,"echo":false,"script":null)
]
}
debug-up={
"deadzone": 0.5,
"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777358,"unicode":0,"echo":false,"script":null)
]
}
debug-down={
"deadzone": 0.5,
"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777352,"unicode":0,"echo":false,"script":null)
]
}
sprint={
"deadzone": 0.5,
"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777237,"unicode":0,"echo":false,"script":null)
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":2,"pressure":0.0,"pressed":false,"script":null)
]
}
dive={
"deadzone": 0.5,
"events": [ Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":2,"pressure":0.0,"pressed":false,"script":null)
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777237,"unicode":0,"echo":false,"script":null)
]
}
like={
"deadzone": 0.5,
"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777221,"unicode":0,"echo":false,"script":null)
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":8,"pressure":0.0,"pressed":false,"script":null)
]
}
throw={
"deadzone": 0.5,
"events": [ Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":1,"pressure":0.0,"pressed":false,"script":null)
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777238,"unicode":0,"echo":false,"script":null)
]
}
escape={
"deadzone": 0.5,
"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777217,"unicode":0,"echo":false,"script":null)
]
}
interact={
"deadzone": 0.5,
"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":69,"unicode":0,"echo":false,"script":null)
]
}
[layer_names]
3d_physics/layer_1="Player"
3d_physics/layer_2="World"
[rendering]
quality/shadows/filter_mode=2
quality/filters/use_nearest_mipmap_filter=true
quality/filters/msaa=3