1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- ; 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="dodge-the-creeps"
- run/main_scene="res://Scenes/Main.tscn"
- config/features=PackedStringArray("4.2", "Forward Plus")
- config/icon="res://icon.svg"
- [debug]
- gdscript/warnings/standalone_ternary=0
- gdscript/warnings/incompatible_ternary=2
- gdscript/warnings/untyped_declaration=2
- gdscript/warnings/unsafe_property_access=2
- gdscript/warnings/unsafe_method_access=2
- gdscript/warnings/unsafe_cast=1
- gdscript/warnings/unsafe_call_argument=1
- gdscript/warnings/return_value_discarded=1
- [display]
- window/size/viewport_width=480
- window/size/viewport_height=720
- window/stretch/mode="canvas_items"
- [input]
- move_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":0,"physical_keycode":4194321,"key_label":0,"unicode":0,"echo":false,"script":null)
- ]
- }
- move_left={
- "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":4194319,"key_label":0,"unicode":0,"echo":false,"script":null)
- ]
- }
- move_up={
- "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":4194320,"key_label":0,"unicode":0,"echo":false,"script":null)
- ]
- }
- move_down={
- "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":4194322,"key_label":0,"unicode":0,"echo":false,"script":null)
- ]
- }
|