project.godot 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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="Large World Coordinates"
  11. config/description="This project showcases optional support for double-precision rendering
  12. and physics in action."
  13. config/tags=PackedStringArray("3d", "demo", "official", "physics", "rendering")
  14. run/main_scene="res://test.tscn"
  15. config/features=PackedStringArray("4.2")
  16. run/low_processor_mode=true
  17. config/icon="res://icon.webp"
  18. [display]
  19. window/stretch/mode="canvas_items"
  20. window/stretch/aspect="expand"
  21. [physics]
  22. common/physics_ticks_per_second=120
  23. [rendering]
  24. renderer/rendering_method="mobile"
  25. lights_and_shadows/directional_shadow/size=2048
  26. lights_and_shadows/directional_shadow/size.mobile=1024
  27. textures/default_filters/anisotropic_filtering_level=4
  28. anti_aliasing/quality/msaa_3d=2
  29. lights_and_shadows/positional_shadow/atlas_size=2048
  30. lights_and_shadows/positional_shadow/atlas_size.mobile=1024