project.godot 692 B

12345678910111213141516171819202122232425262728293031
  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="Autoload (Singletons)"
  11. config/description="This demo shows how to use autoloads to change between scenes."
  12. run/main_scene="res://scene_a.tscn"
  13. config/features=PackedStringArray("4.0")
  14. run/low_processor_mode=true
  15. [autoload]
  16. global="*res://global.gd"
  17. [display]
  18. window/vsync/vsync_mode=0
  19. window/stretch/mode="canvas_items"
  20. window/stretch/aspect="expand"
  21. [rendering]
  22. renderer/rendering_method="mobile"