project.godot 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  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="Constructive Solid Geometry (CSG)"
  11. config/description="This project showcases the various constructive solid geometry features supported by Godot.
  12. CSG can be used to prototype level designs within the 3D editor."
  13. config/tags=PackedStringArray("3d", "demo", "official")
  14. run/main_scene="res://csg.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. [rendering]
  22. lights_and_shadows/directional_shadow/size=8192
  23. lights_and_shadows/directional_shadow/soft_shadow_filter_quality=3
  24. textures/default_filters/anisotropic_filtering_level=4
  25. textures/decals/filter=4
  26. anti_aliasing/quality/msaa_3d=2
  27. anti_aliasing/quality/use_debanding=true