project.godot 979 B

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