project.godot 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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="Grid-based Pathfinding with AStarGrid2D"
  11. config/description="This is an example of using AStarGrid2D for navigation in 2D,
  12. complete with Steering Behaviors in order to smooth the movement out."
  13. run/main_scene="res://game.tscn"
  14. config/features=PackedStringArray("4.0")
  15. config/icon="res://icon.png"
  16. [display]
  17. window/stretch/mode="canvas_items"
  18. window/stretch/aspect="expand"
  19. [input]
  20. move_to={
  21. "deadzone": 0.5,
  22. "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":1,"position":Vector2(0, 0),"global_position":Vector2(0, 0),"factor":1.0,"button_index":1,"pressed":true,"double_click":false,"script":null)
  23. ]
  24. }
  25. teleport_to={
  26. "deadzone": 0.5,
  27. "events": [Object(InputEventMouseButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":true,"ctrl_pressed":false,"meta_pressed":false,"button_mask":1,"position":Vector2(0, 0),"global_position":Vector2(0, 0),"factor":1.0,"button_index":1,"pressed":true,"double_click":false,"script":null)
  28. ]
  29. }
  30. [rendering]
  31. renderer/rendering_method="gl_compatibility"