project.godot 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. ; Engine configuration file.
  2. ; It's best edited using the editor UI and not directly,
  3. ; since the parameters that go here are not all obvious.
  4. ;
  5. ; Format:
  6. ; [section] ; section goes between []
  7. ; param=value ; assign values to parameters
  8. config_version=5
  9. [application]
  10. config/name="dodge-the-creeps"
  11. run/main_scene="res://Scenes/Main.tscn"
  12. config/features=PackedStringArray("4.2", "Forward Plus")
  13. config/icon="res://icon.svg"
  14. [debug]
  15. gdscript/warnings/standalone_ternary=0
  16. gdscript/warnings/incompatible_ternary=2
  17. gdscript/warnings/untyped_declaration=2
  18. gdscript/warnings/unsafe_property_access=2
  19. gdscript/warnings/unsafe_method_access=2
  20. gdscript/warnings/unsafe_cast=1
  21. gdscript/warnings/unsafe_call_argument=1
  22. gdscript/warnings/return_value_discarded=1
  23. [display]
  24. window/size/viewport_width=480
  25. window/size/viewport_height=720
  26. window/stretch/mode="canvas_items"
  27. [input]
  28. move_right={
  29. "deadzone": 0.5,
  30. "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)
  31. ]
  32. }
  33. move_left={
  34. "deadzone": 0.5,
  35. "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)
  36. ]
  37. }
  38. move_up={
  39. "deadzone": 0.5,
  40. "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)
  41. ]
  42. }
  43. move_down={
  44. "deadzone": 0.5,
  45. "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)
  46. ]
  47. }