project.godot 988 B

12345678910111213141516171819202122232425262728293031323334353637
  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.3")
  18. config/icon="res://icon.webp"
  19. [debug]
  20. gdscript/warnings/untyped_declaration=1
  21. [physics]
  22. common/physics_ticks_per_second=120
  23. [rendering]
  24. renderer/rendering_method="gl_compatibility"
  25. renderer/rendering_method.mobile="gl_compatibility"
  26. lights_and_shadows/directional_shadow/soft_shadow_filter_quality=3
  27. anti_aliasing/quality/msaa_3d=2