-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.godot
372 lines (345 loc) · 23.4 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
; 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=5
[application]
config/name="Fetch Quest"
run/main_scene="res://world/levels/test_levels/latest_demo_2.tscn"
config/features=PackedStringArray("4.3", "Forward Plus")
config/icon="res://dialogic_example/player/player_art_final.png"
run/main_scene.release_build="res://ui/title/title_screen.tscn"
[autoload]
ControllerManager="*res://autoloads/controller_manager.gd"
DialogueManager="*res://dialogic_example/dialogue_manager.gd"
Dialogic="*res://addons/dialogic/Core/DialogicGameHandler.gd"
PlayerInventory="*res://autoloads/player_inventory/player_inventory.tscn"
QuestSystem="*res://quest/quest_system.tscn"
SceneTransition="*res://autoloads/scene_transition/scene_transition.tscn"
ChestBetweenScenes="*res://autoloads/chest_between_scenes/chest_between_scenes.tscn"
FastTravelPoints="*res://autoloads/fast_travel_points/fast_travel_points.tscn"
FullscreenManager="*res://autoloads/fullscreen_manager.gd"
ActivatorManager="*res://autoloads/activator_manager.gd"
SFXManager="*res://autoloads/sfx_manager.tscn"
DJMusicMan="*res://dj_music_man/dj_music_man.tscn"
SaveSystem="*res://autoloads/save_system.gd"
[debug]
gdscript/warnings/untyped_declaration=2
[dialogic]
directories/dch_directory={
"Bertram the Alchemist": "res://npc/doctor/dialogue/Bertram the Alchemist.dch",
"Doctor": "res://npc/doctor/dialogue/Doctor.dch",
"FluffleBrownNPC": "res://npc/minor characters/FluffleBrownNPC.dch",
"FluffleGreenNPC": "res://npc/minor characters/FluffleGreenNPC.dch",
"FlufflePinkNPC": "res://npc/minor characters/FlufflePinkNPC.dch",
"Franklin": "res://dialogic_example/example_characters/Franklin.dch",
"Gary Smith": "res://npc/blacksmith/Gary Smith.dch",
"GossipyElder": "res://npc/gossiping_elder/GossipyElder.dch",
"LilGreenGuyNPC": "res://npc/minor characters/LilGreenGuyNPC.dch",
"Michael": "res://dialogic_example/example_characters/Michael.dch",
"MothDarkNPC": "res://npc/minor characters/MothDarkNPC.dch",
"MothLightNPC": "res://npc/minor characters/MothLightNPC.dch",
"MothPinkNPC": "res://npc/minor characters/MothPinkNPC.dch",
"Mr SignPost": "res://dialogic_example/example_characters/Mr SignPost.dch",
"MrHandsNPC": "res://npc/minor characters/MrHandsNPC.dch",
"Princess": "res://npc/princess/dialogue/Princess.dch",
"Rupert": "res://dialogic_example/example_characters/Rupert.dch",
"blue_brian": "res://npc/test_npc/blue_brian.dch",
"farmer": "res://npc/minor_characters/farmer/farmer.dch",
"farmer_alt": "res://npc/minor_characters/farmer_alt/farmer_alt.dch",
"fluffle_brown": "res://npc/minor_characters/fluffle_brown/fluffle_brown.dch",
"fluffle_green": "res://npc/minor_characters/fluffle_green/fluffle_green.dch",
"fluffle_pink": "res://npc/minor_characters/fluffle_pink/fluffle_pink.dch",
"green_guy": "res://npc/minor_characters/lil_green_guy/green_guy.dch",
"guard": "res://npc/guard/guard.dch",
"huntress": "res://npc/huntress/huntress.dch",
"librarian": "res://npc/librarian/librarian.dch",
"moth_dark": "res://npc/minor_characters/moth_dark/moth_dark.dch",
"moth_light": "res://npc/minor_characters/moth_light/moth_light.dch",
"moth_pink": "res://npc/minor_characters/moth_pink/moth_pink.dch",
"mr_hands": "res://npc/minor_characters/mr_hands/mr_hands.dch",
"purple_guy": "res://npc/minor_characters/purple_guy/purple_guy.dch",
"shopkeeper": "res://npc/shopkeeper/shopkeeper.dch"
}
directories/dtl_directory={
"Alchemist First Enounter Timeline": "res://npc/doctor/dialogue/Alchemist First Enounter Timeline.dtl",
"Bertram Timeline": "res://npc/doctor/dialogue/Alchemist General DialogueTimeline.dtl",
"Doctor_timeline": "res://npc/doctor/dialogue/Doctor_timeline.dtl",
"FluffleBrownNPC_timeline": "res://npc/minor characters/FluffleBrownNPC_timeline.dtl",
"FluffleGreenNPC_Timeline": "res://npc/minor characters/FluffleGreenNPC_Timeline.dtl",
"FlufflePinkNPC_timeline": "res://npc/minor characters/FlufflePinkNPC_timeline.dtl",
"GossipingElderMainTimeline": "res://npc/gossiping_elder/GossipingElderMainTimeline.dtl",
"LilGreenGuyNPC__Timeline": "res://npc/minor characters/LilGreenGuyNPC__Timeline.dtl",
"MothDarkNPC_timeline": "res://npc/minor characters/MothDarkNPC_timeline.dtl",
"Princess Bridge ": "res://npc/princess/dialogue/Princess Bridge .dtl",
"PrincessCrossroads": "res://npc/princess/dialogue/PrincessCrossroads.dtl",
"PrincessTown": "res://npc/princess/dialogue/PrincessTown.dtl",
"Shopkeeper": "res://npc/shopkeeper/Shopkeeper.dtl",
"Townsperson 1": "res://npc/minor characters/Townsperson 1.dtl",
"Townsperson 2 MothPinkNPC": "res://npc/minor characters/Townsperson 2 MothPinkNPC.dtl",
"Townsperson 3 MrHandsNPC": "res://npc/minor characters/Townsperson 3 MrHandsNPC.dtl",
"alchemist_quest_mushroom_timeline": "res://npc/doctor/dialogue/Alchemist Mushroom Quest.dtl",
"blacksmith_timeline": "res://npc/blacksmith/blacksmith_timeline.dtl",
"blue_brian_hello": "res://npc/test_npc/blue_brian_hello.dtl",
"demo3Cats": "res://dialogic_example/example_timelines/demo3Cats.dtl",
"demoTimeline": "res://dialogic_example/example_timelines/demoTimeline.dtl",
"demoTimeline2": "res://dialogic_example/example_timelines/demoTimeline2.dtl",
"demoTimeline3": "res://dialogic_example/example_timelines/demoTimeline3.dtl",
"guard_timeline": "res://npc/guard/guard_timeline.dtl",
"huntress_timeline": "res://npc/huntress/huntress_timeline.dtl",
"librarian_timeline": "res://npc/librarian/librarian_timeline.dtl",
"timeline": "res://npc/minor_characters/farmer/timeline.dtl"
}
glossary/default_case_sensitive=true
layout/style_list=["res://dialogic_example/NarratorStyle.tres", "res://dialogic_example/ExampleDialogueStyleVN.tres", "res://dialogic_example/ExampleDialogueStyleBubble.tres", "res://dialogic_example/ExampleDialogueStyleBox.tres"]
layout/default_style="res://dialogic_example/ExampleDialogueStyleBubble.tres"
glossary/glossary_files=[]
variables={
"Shopkeeper": {
"talk_shop": false
},
"church_complete": false,
"dungeons_completed": 0,
"forest_complete": false,
"king_complete": "",
"princess": {
"crossroads": {
"talk_count": 0
},
"princess_talk": ""
},
"talk_count": ""
}
text/letter_speed=0.01
text/initial_text_reveal_skippable=true
text/text_reveal_skip_delay=0.1
text/advance_delay=0.1
text/autoadvance_per_character_delay=0.1
text/autoadvance_ignored_characters_enabled=true
animations/join_default_length=0.5
animations/leave_default_length=0.5
animations/leave_default_wait=true
animations/join_default_wait=true
choices/autofocus_first=true
choices/delay=0.2
choices/reveal_delay=0
choices/reveal_by_input=false
save/autosave_delay=60.0
save/encryption_on_exports_only=true
text/autopauses={}
extensions_folder="res://addons/dialogic_additions"
animations/cross_fade_default_length=0.5
translation/enabled=false
translation/original_locale="en"
translation/file_mode=1
translation/translation_folder=""
translation/save_mode=0
translation/add_separator=false
history/simple_history_enabled=true
[display]
window/stretch/mode="canvas_items"
mouse_cursor/custom_image="res://ui/mouse_cursor/BoneCursorSmall.png"
mouse_cursor/custom_image_hotspot=Vector2(5, 5)
[editor_plugins]
enabled=PackedStringArray("res://addons/activator_plugin/plugin.cfg", "res://addons/dialogic/plugin.cfg", "res://addons/rmsmartshape/plugin.cfg")
[file_customization]
folder_colors={
"res://addons/": "gray",
"res://dialogic_example/": "gray",
"res://ehayes contributions/": "pink",
"res://enemy/": "red",
"res://npc/": "purple",
"res://player/": "blue",
"res://quest/": "yellow",
"res://test_scenes/": "gray",
"res://ui/": "orange",
"res://world/": "green",
"res://world/levels/": "teal"
}
[global_group]
Player=""
Enemy=""
Item="Something the player can pick up"
Hittable=""
Reloads="Group exclusive to the Reloadable type"
World=""
Activatable="Nodes that can be activated by switches/etc."
Activator="Something that can be activated by the player."
HoleOccluder="For platforms which can overlap holes, preventing the player from falling into them."
Hole="For platforms which can overlap holes, preventing the player from falling into them."
[gui]
theme/custom_font="res://ui/fonts/Chewy-Regular.ttf"
[input]
ui_accept={
"deadzone": 0.5,
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":4194309,"physical_keycode":0,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null)
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":4194310,"physical_keycode":0,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null)
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":32,"physical_keycode":0,"key_label":0,"unicode":32,"location":0,"echo":false,"script":null)
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"button_index":0,"pressure":0.0,"pressed":true,"script":null)
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":69,"key_label":0,"unicode":101,"location":0,"echo":false,"script":null)
]
}
ui_cancel={
"deadzone": 0.5,
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":4194305,"physical_keycode":0,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null)
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"button_index":1,"pressure":0.0,"pressed":true,"script":null)
]
}
ui_left={
"deadzone": 0.5,
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":4194319,"physical_keycode":0,"key_label":0,"unicode":0,"location":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(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":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":65,"key_label":0,"unicode":97,"location":0,"echo":false,"script":null)
]
}
ui_right={
"deadzone": 0.5,
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":4194321,"physical_keycode":0,"key_label":0,"unicode":0,"location":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(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":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":68,"key_label":0,"unicode":100,"location":0,"echo":false,"script":null)
]
}
ui_up={
"deadzone": 0.5,
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":4194320,"physical_keycode":0,"key_label":0,"unicode":0,"location":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)
, 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":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":87,"key_label":0,"unicode":119,"location":0,"echo":false,"script":null)
]
}
ui_down={
"deadzone": 0.5,
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":4194322,"physical_keycode":0,"key_label":0,"unicode":0,"location":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(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":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":83,"key_label":0,"unicode":115,"location":0,"echo":false,"script":null)
]
}
move_left={
"deadzone": 0.2,
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194319,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null)
, Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":-1,"axis":0,"axis_value":-1.0,"script":null)
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":65,"key_label":0,"unicode":97,"location":0,"echo":false,"script":null)
]
}
move_right={
"deadzone": 0.2,
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194321,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null)
, Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":-1,"axis":0,"axis_value":1.0,"script":null)
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":68,"key_label":0,"unicode":100,"location":0,"echo":false,"script":null)
]
}
move_up={
"deadzone": 0.2,
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":87,"key_label":0,"unicode":119,"location":0,"echo":false,"script":null)
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194320,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null)
, Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":-1,"axis":1,"axis_value":-1.0,"script":null)
]
}
move_down={
"deadzone": 0.2,
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":83,"key_label":0,"unicode":115,"location":0,"echo":false,"script":null)
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194322,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null)
, Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":-1,"axis":1,"axis_value":1.0,"script":null)
]
}
dog_roll={
"deadzone": 0.5,
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":32,"key_label":0,"unicode":32,"location":0,"echo":false,"script":null)
, Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":-1,"axis":4,"axis_value":1.0,"script":null)
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"button_index":1,"pressure":0.0,"pressed":true,"script":null)
]
}
speak={
"deadzone": 0.5,
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":4194325,"physical_keycode":0,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null)
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"button_index":9,"pressure":0.0,"pressed":true,"script":null)
]
}
interact={
"deadzone": 0.5,
"events": [Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"button_index":0,"pressure":0.0,"pressed":true,"script":null)
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":69,"key_label":0,"unicode":101,"location":0,"echo":false,"script":null)
]
}
attack={
"deadzone": 0.5,
"events": [Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":-1,"axis":5,"axis_value":1.0,"script":null)
, Object(InputEventMouseButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"button_mask":1,"position":Vector2(222, 18),"global_position":Vector2(226, 59),"factor":1.0,"button_index":1,"canceled":false,"pressed":true,"double_click":false,"script":null)
]
}
dialogic_default_action={
"deadzone": 0.5,
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":4194309,"physical_keycode":0,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null)
, Object(InputEventMouseButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"button_mask":0,"position":Vector2(0, 0),"global_position":Vector2(0, 0),"factor":1.0,"button_index":1,"canceled":false,"pressed":true,"double_click":false,"script":null)
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":32,"physical_keycode":0,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null)
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":69,"physical_keycode":0,"key_label":0,"unicode":101,"location":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)
]
}
look_up={
"deadzone": 0.2,
"events": [Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":-1,"axis":3,"axis_value":-1.0,"script":null)
]
}
look_down={
"deadzone": 0.2,
"events": [Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":-1,"axis":3,"axis_value":1.0,"script":null)
]
}
look_left={
"deadzone": 0.2,
"events": [Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":-1,"axis":2,"axis_value":-1.0,"script":null)
]
}
look_right={
"deadzone": 0.2,
"events": [Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":-1,"axis":2,"axis_value":1.0,"script":null)
]
}
throw_bomb={
"deadzone": 0.5,
"events": [Object(InputEventMouseButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"button_mask":0,"position":Vector2(0, 0),"global_position":Vector2(0, 0),"factor":1.0,"button_index":2,"canceled":false,"pressed":false,"double_click":false,"script":null)
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"button_index":10,"pressure":0.0,"pressed":false,"script":null)
]
}
pause={
"deadzone": 0.5,
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194305,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null)
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"button_index":6,"pressure":0.0,"pressed":true,"script":null)
]
}
fullscreen={
"deadzone": 0.5,
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194342,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null)
]
}
open_quest_book={
"deadzone": 0.5,
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":81,"key_label":0,"unicode":113,"location":0,"echo":false,"script":null)
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"button_index":4,"pressure":0.0,"pressed":true,"script":null)
]
}
[layer_names]
2d_physics/layer_1="Terrain"
2d_physics/layer_2="Player"
2d_physics/layer_3="Enemy"
2d_physics/layer_4="Hole"
2d_physics/layer_5="Item"
2d_physics/layer_6="Enemy Projectiles"
2d_physics/layer_7="Switch"
2d_physics/layer_8="Bomb"
2d_physics/layer_9="Barkable"
2d_physics/layer_10="SwordBlocking"
2d_physics/layer_11="Anti-Block Terrain"
[physics]
common/physics_jitter_fix=0.0
common/physics_interpolation=true
[rendering]
textures/canvas_textures/default_texture_filter=0
textures/canvas_textures/default_texture_repeat=1