project.godot 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  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="Operating System Testing"
  11. config/description="This demo showcases various OS-specific features in Godot.
  12. It can be used to test Godot while porting it to a
  13. new platform or to check for regressions.
  14. In a nutshell, this demo shows how you can get information from the
  15. operating system, or interact with the operating system."
  16. config/tags=PackedStringArray("demo", "official", "porting")
  17. run/main_scene="res://os_test.tscn"
  18. config/features=PackedStringArray("4.2")
  19. run/low_processor_mode=true
  20. config/icon="res://icon.webp"
  21. [display]
  22. window/stretch/mode="canvas_items"
  23. window/stretch/aspect="expand"
  24. window/vsync/vsync_mode=0
  25. [rendering]
  26. quality/driver/driver_name="GLES2"
  27. vram_compression/import_etc=true
  28. vram_compression/import_etc2=false