project.godot 918 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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="Tween Demo"
  11. config/description="A demo showing advanced tween usage."
  12. run/main_scene="res://main.tscn"
  13. config/icon="res://icon.png"
  14. target_fps=60
  15. [debug]
  16. gdscript/warnings/return_value_discarded=false
  17. [display]
  18. window/size/height=800
  19. window/dpi/allow_hidpi=true
  20. window/stretch/mode="2d"
  21. window/stretch/aspect="expand"
  22. stretch/aspect="keep_width"
  23. stretch/mode="2d"
  24. [gdnative]
  25. singletons=[ ]
  26. [memory]
  27. multithread/thread_rid_pool_prealloc=60
  28. [rendering]
  29. quality/driver/driver_name="GLES2"
  30. vram_compression/import_etc=true
  31. vram_compression/import_etc2=false
  32. environment/default_clear_color=Color( 0.2349, 0.2349, 0.27, 1 )