-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproject.godot
437 lines (405 loc) · 17.2 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
; 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": "Area2D",
"class": "AttackComponent",
"language": "GDScript",
"path": "res://entities/classes/attackComponent/attackComponent.gd"
}, {
"base": "KinematicBody2D",
"class": "Block",
"language": "GDScript",
"path": "res://objects/destrutiveBlocks/normal/destrutiveBlock.gd"
}, {
"base": "HitboxComponent",
"class": "BreakableTiles",
"language": "GDScript",
"path": "res://worlds/classes/breakableTiles/breakableTiles.gd"
}, {
"base": "Node2D",
"class": "BreakableTilesManager",
"language": "GDScript",
"path": "res://worlds/classes/breakableTiles/breakableTilesManager.gd"
}, {
"base": "Area2D",
"class": "CameraLimitsArea",
"language": "GDScript",
"path": "res://objects/cameraLimitsArea/cameraLimitsArea.gd"
}, {
"base": "Area2D",
"class": "CanvasModulaterChanger",
"language": "GDScript",
"path": "res://worlds/classes/canvasModulateChanger/CanvasModulteChanger.gd"
}, {
"base": "PathBase",
"class": "ChangeRoom",
"language": "GDScript",
"path": "res://worlds/classes/ChangeRoom/ChangeRoom.gd"
}, {
"base": "Button",
"class": "ControllerButton",
"language": "GDScript",
"path": "res://addons/controller_icons/objects/Button.gd"
}, {
"base": "Node",
"class": "ControllerMapper",
"language": "GDScript",
"path": "res://addons/controller_icons/Mapper.gd"
}, {
"base": "Resource",
"class": "ControllerSettings",
"language": "GDScript",
"path": "res://addons/controller_icons/Settings.gd"
}, {
"base": "Sprite",
"class": "ControllerSprite",
"language": "GDScript",
"path": "res://addons/controller_icons/objects/Sprite.gd"
}, {
"base": "Sprite3D",
"class": "ControllerSprite3D",
"language": "GDScript",
"path": "res://addons/controller_icons/objects/Sprite3D.gd"
}, {
"base": "TextureRect",
"class": "ControllerTextureRect",
"language": "GDScript",
"path": "res://addons/controller_icons/objects/TextureRect.gd"
}, {
"base": "AnimationPlayer",
"class": "CutScene",
"language": "GDScript",
"path": "res://gameplay/classes/cinematic/cinematicPlayer.gd"
}, {
"base": "Resource",
"class": "DamageAttack",
"language": "GDScript",
"path": "res://entities/classes/damageAttack.gd"
}, {
"base": "CanvasLayer",
"class": "DialogManager",
"language": "GDScript",
"path": "res://entities/player/HUD/scripts/dialog/dialog.gd"
}, {
"base": "PathBase",
"class": "DimensionPortal",
"language": "GDScript",
"path": "res://worlds/classes/dimensionPortal/dimensionPortalClass.gd"
}, {
"base": "PathBase",
"class": "Door",
"language": "GDScript",
"path": "res://objects/doors/door.gd"
}, {
"base": "KinematicBody2D",
"class": "EnemyBase",
"language": "GDScript",
"path": "res://entities/enemies/enemyBase/enemyBase.gd"
}, {
"base": "Area2D",
"class": "HitboxComponent",
"language": "GDScript",
"path": "res://entities/classes/hitboxComponent/hitboxComponent.gd"
}, {
"base": "Control",
"class": "InteractBallon",
"language": "GDScript",
"path": "res://entities/classes/interactComponent/interactBallon.gd"
}, {
"base": "Node2D",
"class": "LevelClass",
"language": "GDScript",
"path": "res://worlds/classes/levelClass/levelClass.gd"
}, {
"base": "KinematicBody2D",
"class": "NPCBase",
"language": "GDScript",
"path": "res://entities/NPCs/NPCBase.gd"
}, {
"base": "Resource",
"class": "OptionsSave",
"language": "GDScript",
"path": "res://gameplay/MENU/optionsSave.gd"
}, {
"base": "Area2D",
"class": "PathBase",
"language": "GDScript",
"path": "res://worlds/classes/pathBase/pathBase.gd"
}, {
"base": "KinematicBody2D",
"class": "PlayerBase",
"language": "GDScript",
"path": "res://entities/player/playerBase.gd"
}, {
"base": "CanvasLayer",
"class": "PlayerHud",
"language": "GDScript",
"path": "res://entities/player/HUD/playerHud.gd"
}, {
"base": "Resource",
"class": "Question",
"language": "GDScript",
"path": "res://entities/classes/dialogComponent/classes/question.gd"
}, {
"base": "Node2D",
"class": "RoomClass",
"language": "GDScript",
"path": "res://worlds/classes/roomClass/roomClass.gd"
}, {
"base": "Position2D",
"class": "RoomWarp",
"language": "GDScript",
"path": "res://worlds/classes/roomWarp/roomWarp.gd"
}, {
"base": "Resource",
"class": "SaveGame",
"language": "GDScript",
"path": "res://gameplay/saves/saveResource.gd"
}, {
"base": "Node",
"class": "State",
"language": "GDScript",
"path": "res://entities/classes/statemachinee/state.gd"
}, {
"base": "Node",
"class": "StateMachine",
"language": "GDScript",
"path": "res://entities/classes/statemachinee/StateMachine.gd"
}, {
"base": "Node2D",
"class": "Statue",
"language": "GDScript",
"path": "res://dimensions/classes/statue/statue.gd"
}, {
"base": "Area2D",
"class": "TeleportBase",
"language": "GDScript",
"path": "res://worlds/classes/teleportBase/teleportBase.gd"
}, {
"base": "Resource",
"class": "TextDialog",
"language": "GDScript",
"path": "res://entities/player/HUD/classes/textDialog.gd"
}, {
"base": "TileMap",
"class": "TilepropsScene",
"language": "GDScript",
"path": "res://worlds/classes/tileProps/tileProps.gd"
}, {
"base": "Area2D",
"class": "TransformClass",
"language": "GDScript",
"path": "res://objects/transform/transformClass.gd"
} ]
_global_script_class_icons={
"AttackComponent": "",
"Block": "",
"BreakableTiles": "",
"BreakableTilesManager": "",
"CameraLimitsArea": "",
"CanvasModulaterChanger": "",
"ChangeRoom": "",
"ControllerButton": "",
"ControllerMapper": "",
"ControllerSettings": "",
"ControllerSprite": "",
"ControllerSprite3D": "",
"ControllerTextureRect": "",
"CutScene": "",
"DamageAttack": "",
"DialogManager": "",
"DimensionPortal": "",
"Door": "",
"EnemyBase": "",
"HitboxComponent": "",
"InteractBallon": "",
"LevelClass": "",
"NPCBase": "",
"OptionsSave": "",
"PathBase": "",
"PlayerBase": "",
"PlayerHud": "",
"Question": "",
"RoomClass": "",
"RoomWarp": "",
"SaveGame": "",
"State": "",
"StateMachine": "",
"Statue": "",
"TeleportBase": "",
"TextDialog": "",
"TilepropsScene": "",
"TransformClass": ""
}
[application]
config/name="RECOMPOSE"
run/main_scene="res://gameplay/intro/intro.tscn"
boot_splash/show_image=false
boot_splash/use_filter=false
boot_splash/bg_color=Color( 0, 0, 0, 1 )
config/icon="res://gameplay/assets/icons/recomposeIcon.png"
config/windows_native_icon="res://gameplay/assets/icons/recomposeIcon.ico"
[audio]
default_bus_layout="res://audio/default_bus_layout.tres"
[autoload]
Global="*res://autoloads/global.gd"
FileSystemHandler="*res://autoloads/fileSystemHandler.gd"
LoadScreen="*res://autoloads/loadSystem/loadScreen.tscn"
LoadSystem="*res://autoloads/loadSystem/loadSystem.gd"
AudioManager="*res://audio/audioSystem/audioSystem.tscn"
ControllerIcons="*res://addons/controller_icons/ControllerIcons.gd"
[display]
window/size/width=1361
window/size/height=736
window/size/fullscreen=true
window/stretch/mode="viewport"
window/stretch/aspect="keep_width"
[editor_plugins]
enabled=PoolStringArray( "res://addons/controller_icons/plugin.cfg", "res://addons/godot_pixelorama_importer/plugin.cfg", "res://addons/nklbdev.tile_palette/plugin.cfg" )
[gdnative]
singletons=[ ]
[gui]
common/drop_mouse_on_gui_input_disabled=true
[importer_defaults]
texture={
"flags/filter": false
}
[input]
ui_accept={
"deadzone": 0.5,
"events": [ Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":0,"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":69,"physical_scancode":0,"unicode":0,"echo":false,"script":null)
]
}
ui_focus_next={
"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":5,"pressure":0.0,"pressed":false,"script":null)
]
}
ui_focus_prev={
"deadzone": 0.5,
"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":true,"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":5,"pressure":0.0,"pressed":false,"script":null)
]
}
ui_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,"physical_scancode":0,"unicode":0,"echo":false,"script":null)
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":14,"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":16777231,"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)
]
}
ui_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,"physical_scancode":0,"unicode":0,"echo":false,"script":null)
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":15,"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":16777233,"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)
]
}
ui_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,"physical_scancode":0,"unicode":0,"echo":false,"script":null)
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":12,"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":16777232,"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)
]
}
ui_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,"physical_scancode":0,"unicode":0,"echo":false,"script":null)
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":13,"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":16777234,"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)
]
}
ui_enter={
"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)
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":3,"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":16777222,"physical_scancode":0,"unicode":0,"echo":false,"script":null)
]
}
ui_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":-1,"button_index":0,"pressure":0.0,"pressed":false,"script":null)
]
}
attack={
"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":75,"physical_scancode":0,"unicode":0,"echo":false,"script":null)
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":1,"pressure":0.0,"pressed":false,"script":null)
]
}
run={
"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":76,"physical_scancode":0,"unicode":0,"echo":false,"script":null)
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":4,"pressure":0.0,"pressed":false,"script":null)
]
}
menu={
"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":16777217,"unicode":0,"echo":false,"script":null)
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":11,"pressure":0.0,"pressed":false,"script":null)
]
}
Debug={
"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":16777253,"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":0,"physical_scancode":69,"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)
]
}
confirm={
"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":16777221,"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)
]
}
fullscreen={
"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":16777254,"unicode":0,"echo":false,"script":null)
]
}
inventory={
"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":73,"unicode":0,"echo":false,"script":null)
]
}
[input_devices]
buffering/agile_event_flushing=true
[layer_names]
2d_physics/layer_1="solido"
2d_physics/layer_9="playerAttack"
2d_physics/layer_10="enemyAttack"
2d_physics/layer_11="anyAttack"
2d_physics/layer_12="enemyVision"
[locale]
translations=PoolStringArray( "res://translations/menu/menuTranslation.en.translation", "res://translations/menu/menuTranslation.pt_BR.translation", "res://translations/NPC/npcTranslation.en.translation", "res://translations/NPC/npcTranslation.pt_BR.translation", "res://translations/other/otherTranslation.en.translation", "res://translations/other/otherTranslation.pt_BR.translation", "res://translations/bosses/bosses.en.translation", "res://translations/bosses/bosses.pt_BR.translation", "res://translations/names/namesTranslation.en.translation", "res://translations/names/namesTranslation.pt_BR.translation" )
locale_filter=[ 0, [ "en", "pt_BR" ] ]
[physics]
common/enable_pause_aware_picking=true
2d/default_gravity=10
[rendering]
quality/driver/driver_name="GLES2"
2d/snapping/use_gpu_pixel_snap=true
vram_compression/import_etc=true
vram_compression/import_etc2=false
2d/options/ninepatch_mode=0
batching/lights/scissor_area_threshold=0.4
environment/default_environment="res://default_env.tres"
[tiled_importer]
enable_json_format=true