-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.godot
478 lines (458 loc) · 18.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
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
; 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": "KinematicBody",
"class": "Actor",
"language": "GDScript",
"path": "res://entities/actors/actor.gd"
}, {
"base": "MeshInstance",
"class": "AmmoPickup",
"language": "GDScript",
"path": "res://entities/pickups/Ammo.gd"
}, {
"base": "Actor",
"class": "Bot",
"language": "GDScript",
"path": "res://entities/actors/enemies/bot.gd"
}, {
"base": "Position2D",
"class": "ChallengeAnime",
"language": "GDScript",
"path": "res://entities/challenges/ChallengeAnime.gd"
}, {
"base": "Position2D",
"class": "ChallengeAnimeContainer",
"language": "GDScript",
"path": "res://entities/challenges/ChallengeAnimeContainer.gd"
}, {
"base": "Label",
"class": "ChallengeLabel",
"language": "GDScript",
"path": "res://entities/challenges/Challenge.gd"
}, {
"base": "VBoxContainer",
"class": "Challenges",
"language": "GDScript",
"path": "res://entities/challenges/Challenges.gd"
}, {
"base": "MeshInstance",
"class": "CloudDome",
"language": "GDScript",
"path": "res://addons/cloud/Cloud.gd"
}, {
"base": "Object",
"class": "CmdHelp",
"language": "GDScript",
"path": "res://helpers/CmdHelper.gd"
}, {
"base": "GraphNode",
"class": "CommonNode",
"language": "GDScript",
"path": "res://addons/project_map/pm_common_node.gd"
}, {
"base": "Label",
"class": "Controls",
"language": "GDScript",
"path": "res://entities/tutorial/Controls.gd"
}, {
"base": "Node",
"class": "DisabledContainer",
"language": "GDScript",
"path": "res://entities/disable/Disabled.gd"
}, {
"base": "Position3D",
"class": "Door",
"language": "GDScript",
"path": "res://entities/navigation/Door/Door.gd"
}, {
"base": "Bot",
"class": "Enemy",
"language": "GDScript",
"path": "res://entities/actors/enemies/enemy.gd"
}, {
"base": "ColorRect",
"class": "FadeIn",
"language": "GDScript",
"path": "res://entities/screens/tiledscreen/fade_in.gd"
}, {
"base": "Enemy",
"class": "Goomba",
"language": "GDScript",
"path": "res://entities/actors/enemies/goomba.gd"
}, {
"base": "ResourceFormatLoader",
"class": "HTerrainDataLoader",
"language": "GDScript",
"path": "res://addons/zylann.hterrain/hterrain_resource_loader.gd"
}, {
"base": "ResourceFormatSaver",
"class": "HTerrainDataSaver",
"language": "GDScript",
"path": "res://addons/zylann.hterrain/hterrain_resource_saver.gd"
}, {
"base": "Spatial",
"class": "Label3d",
"language": "GDScript",
"path": "res://entities/label3d/Label3d.gd"
}, {
"base": "Navigation",
"class": "Level",
"language": "GDScript",
"path": "res://entities/level/Level.gd"
}, {
"base": "Timer",
"class": "LevelTimer",
"language": "GDScript",
"path": "res://entities/actors/player/player_timer.gd"
}, {
"base": "Camera",
"class": "Manager",
"language": "GDScript",
"path": "res://entities/manager/manager.gd"
}, {
"base": "Enemy",
"class": "Marksmen",
"language": "GDScript",
"path": "res://entities/actors/enemies/marksmen.gd"
}, {
"base": "Button",
"class": "Menu_Button",
"language": "GDScript",
"path": "res://entities/screens/tiledscreen/buttons/button.gd"
}, {
"base": "Object",
"class": "NodeHelper",
"language": "GDScript",
"path": "res://helpers/NodeHelper.gd"
}, {
"base": "KinematicBody",
"class": "PickupBody",
"language": "GDScript",
"path": "res://entities/pickups/pickupbody.gd"
}, {
"base": "Actor",
"class": "Player",
"language": "GDScript",
"path": "res://entities/actors/player/player.gd"
}, {
"base": "Control",
"class": "Player_Hud",
"language": "GDScript",
"path": "res://entities/actors/player/hud.gd"
}, {
"base": "Button",
"class": "PluginButton",
"language": "GDScript",
"path": "res://addons/csgtomeshinstance/plugin_button.gd"
}, {
"base": "Position3D",
"class": "Projectile",
"language": "GDScript",
"path": "res://entities/projectiles/Projectile.gd"
}, {
"base": "Node",
"class": "RefClass",
"language": "GDScript",
"path": "res://auto_load/ref.gd"
}, {
"base": "Control",
"class": "Screen",
"language": "GDScript",
"path": "res://entities/screens/screen.gd"
}, {
"base": "Screen",
"class": "Screen_Levels",
"language": "GDScript",
"path": "res://entities/screens/levels_screen.gd"
}, {
"base": "Screen",
"class": "Screen_Options",
"language": "GDScript",
"path": "res://entities/screens/options/options_screen.gd"
}, {
"base": "Screen",
"class": "Screen_Pause",
"language": "GDScript",
"path": "res://entities/actors/player/Pause.gd"
}, {
"base": "Enemy",
"class": "SentryGun",
"language": "GDScript",
"path": "res://entities/actors/enemies/SentryGun.gd"
}, {
"base": "Node",
"class": "Stick",
"language": "GDScript",
"path": "res://entities/actors/player/stick.gd"
}, {
"base": "Area",
"class": "Switch",
"language": "GDScript",
"path": "res://entities/switch/switch.gd"
}, {
"base": "StaticBody",
"class": "Target",
"language": "GDScript",
"path": "res://entities/target/Target.gd"
}, {
"base": "Control",
"class": "Tutorial",
"language": "GDScript",
"path": "res://entities/tutorial/Tutorial.gd"
}, {
"base": "MeshInstance",
"class": "Weapon",
"language": "GDScript",
"path": "res://entities/weapons/weapon.gd"
}, {
"base": "Spatial",
"class": "WeaponContainer",
"language": "GDScript",
"path": "res://entities/weapons/WeaponsContainer.gd"
}, {
"base": "Bot",
"class": "Zombie",
"language": "GDScript",
"path": "res://entities/actors/enemies/zombie.gd"
} ]
_global_script_class_icons={
"Actor": "",
"AmmoPickup": "",
"Bot": "",
"ChallengeAnime": "",
"ChallengeAnimeContainer": "",
"ChallengeLabel": "",
"Challenges": "",
"CloudDome": "",
"CmdHelp": "",
"CommonNode": "",
"Controls": "",
"DisabledContainer": "",
"Door": "",
"Enemy": "",
"FadeIn": "",
"Goomba": "",
"HTerrainDataLoader": "",
"HTerrainDataSaver": "",
"Label3d": "",
"Level": "",
"LevelTimer": "",
"Manager": "",
"Marksmen": "",
"Menu_Button": "",
"NodeHelper": "",
"PickupBody": "",
"Player": "",
"Player_Hud": "",
"PluginButton": "",
"Projectile": "",
"RefClass": "",
"Screen": "",
"Screen_Levels": "",
"Screen_Options": "",
"Screen_Pause": "",
"SentryGun": "",
"Stick": "",
"Switch": "",
"Target": "",
"Tutorial": "",
"Weapon": "",
"WeaponContainer": "",
"Zombie": ""
}
[application]
config/name="Karnage"
run/main_scene="res://entities/screens/tiledscreen/titled_screen.tscn"
boot_splash/image="res://assets/Karnage/logo.png"
config/icon="res://assets/Karnage/logo.png"
[audio]
default_bus_layout=""
[autoload]
ref="*res://auto_load/ref.gd"
Master="*res://auto_load/master.gd"
Mouse="*res://auto_load/mouse.gd"
Console="*res://auto_load/Console/Console.tscn"
GameData="*res://auto_load/game_data.gd"
GameSettings="*res://auto_load/game_settings.gd"
BgmEternalNight="*res://auto_load/BgmEternalNight.tscn"
[debug]
gdscript/warnings/unused_argument=false
gdscript/warnings/narrowing_conversion=false
gdscript/warnings/return_value_discarded=false
[display]
window/stretch/mode="2d"
window/stretch/aspect="keep"
[editor_plugins]
enabled=PoolStringArray( "res://addons/CSGStairs/plugin.cfg", "res://addons/CodeSnippetPopup/plugin.cfg", "res://addons/Mirror/plugin.cfg", "res://addons/QuickPluginManager/plugin.cfg", "res://addons/Todo_Manager/plugin.cfg", "res://addons/cloud/plugin.cfg", "res://addons/notes_tab/plugin.cfg", "res://addons/project-statistics/plugin.cfg", "res://addons/project_map/plugin.cfg", "res://addons/zylann.hterrain/plugin.cfg", "res://addons/zylann.scatter/plugin.cfg" )
[input]
move_left={
"deadzone": 0.35,
"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,"physical_scancode":0,"unicode":0,"echo":false,"script":null)
, Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":0,"axis":0,"axis_value":-1.0,"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,"physical_scancode":0,"unicode":0,"echo":false,"script":null)
]
}
move_right={
"deadzone": 0.35,
"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,"physical_scancode":0,"unicode":0,"echo":false,"script":null)
, Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":0,"axis":0,"axis_value":1.0,"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,"physical_scancode":0,"unicode":0,"echo":false,"script":null)
]
}
move_forward={
"deadzone": 0.35,
"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,"physical_scancode":0,"unicode":0,"echo":false,"script":null)
, Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":0,"axis":1,"axis_value":-1.0,"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,"physical_scancode":0,"unicode":0,"echo":false,"script":null)
, 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":3,"pressed":false,"doubleclick":false,"script":null)
]
}
move_backward={
"deadzone": 0.35,
"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,"physical_scancode":0,"unicode":0,"echo":false,"script":null)
, Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":0,"axis":1,"axis_value":1.0,"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,"physical_scancode":0,"unicode":0,"echo":false,"script":null)
]
}
look_left={
"deadzone": 0.0,
"events": [ Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":0,"axis":2,"axis_value":-1.0,"script":null)
]
}
look_right={
"deadzone": 0.0,
"events": [ Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":0,"axis":2,"axis_value":1.0,"script":null)
]
}
look_up={
"deadzone": 0.0,
"events": [ Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":0,"axis":3,"axis_value":-1.0,"script":null)
]
}
look_down={
"deadzone": 0.0,
"events": [ Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":0,"axis":3,"axis_value":1.0,"script":null)
]
}
toggle_mouse={
"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":16777244,"physical_scancode":0,"unicode":0,"echo":false,"script":null)
]
}
game_end={
"deadzone": 0.5,
"events": [ Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":11,"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":16777217,"physical_scancode":0,"unicode":0,"echo":false,"script":null)
]
}
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,"physical_scancode":0,"unicode":0,"echo":false,"script":null)
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":6,"pressure":0.0,"pressed":false,"script":null)
]
}
fire={
"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":1,"pressed":false,"doubleclick":false,"script":null)
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":5,"pressure":0.0,"pressed":false,"script":null)
]
}
hit={
"deadzone": 0.5,
"events": [ Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":7,"pressure":0.0,"pressed":false,"script":null)
, 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":2,"pressed":false,"doubleclick":false,"script":null)
]
}
roll={
"deadzone": 0.5,
"events": [ Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":4,"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,"physical_scancode":0,"unicode":0,"echo":false,"script":null)
]
}
debugEnemy={
"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":48,"physical_scancode":0,"unicode":0,"echo":false,"script":null)
]
}
test={
"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":84,"physical_scancode":0,"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":70,"physical_scancode":0,"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)
]
}
show_challenges={
"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":67,"physical_scancode":0,"unicode":0,"echo":false,"script":null)
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":10,"pressure":0.0,"pressed":false,"script":null)
]
}
mute={
"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":16777245,"physical_scancode":0,"unicode":0,"echo":false,"script":null)
]
}
open_debug_console={
"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":39,"physical_scancode":0,"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":33554431,"physical_scancode":0,"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":96,"physical_scancode":0,"unicode":0,"echo":false,"script":null)
]
}
enter_command={
"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,"physical_scancode":0,"unicode":0,"echo":false,"script":null)
]
}
console_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":16777235,"physical_scancode":0,"unicode":0,"echo":false,"script":null)
]
}
console_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":16777236,"physical_scancode":0,"unicode":0,"echo":false,"script":null)
]
}
reload={
"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":82,"physical_scancode":0,"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)
]
}
shift={
"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":16777244,"physical_scancode":0,"unicode":0,"echo":false,"script":null)
]
}
switch_weapon={
"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":16777218,"physical_scancode":0,"unicode":0,"echo":false,"script":null)
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":3,"pressure":0.0,"pressed":false,"script":null)
]
}
lean_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":0,"physical_scancode":81,"unicode":0,"echo":false,"script":null)
]
}
lean_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":0,"physical_scancode":69,"unicode":0,"echo":false,"script":null)
]
}
[rendering]
environment/default_environment="res://default_env.tres"
[statistics]
force_include=PoolStringArray( )