project.godot 976 B

1234567891011121314151617181920212223242526272829303132333435363738
  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=4
  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. run/main_scene="res://os_test.tscn"
  17. run/low_processor_mode=true
  18. config/icon="res://icon.png"
  19. [debug]
  20. gdscript/warnings/return_value_discarded=false
  21. [display]
  22. window/dpi/allow_hidpi=true
  23. window/stretch/mode="2d"
  24. window/stretch/aspect="expand"
  25. [rendering]
  26. quality/driver/driver_name="GLES2"
  27. vram_compression/import_etc=true
  28. vram_compression/import_etc2=false