project.godot 774 B

1234567891011121314151617181920212223242526272829
  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="3D Navigation"
  11. config/description="Navigation demo for 3D scenes, with a character
  12. able to pathfind around a static 3D environment.
  13. The navigation path is drawn using a line.
  14. Code is provided for polyline following in 3D."
  15. config/tags=PackedStringArray("3d", "ai", "demo", "official")
  16. run/main_scene="res://navmesh.tscn"
  17. config/features=PackedStringArray("4.2")
  18. config/icon="res://icon.webp"
  19. [physics]
  20. common/physics_ticks_per_second=120
  21. [rendering]
  22. anti_aliasing/quality/msaa_3d=2