project.godot 907 B

1234567891011121314151617181920212223242526272829303132
  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="2D Polygons and Lines"
  11. config/description="A demo of solid and textured 2D polygons and lines using Polygon2D and Line2D.
  12. 2D antialiasing is also showcased using two techniques:
  13. MSAA 2D and a specially crafted texture applied to a Line2D node."
  14. run/main_scene="res://polygons_lines.tscn"
  15. config/features=PackedStringArray("4.2")
  16. run/low_processor_mode=true
  17. config/icon="res://icon.webp"
  18. [display]
  19. window/stretch/mode="canvas_items"
  20. window/stretch/aspect="expand"
  21. window/vsync/vsync_mode=0
  22. [rendering]
  23. renderer/rendering_method="mobile"
  24. environment/defaults/default_clear_color=Color(0.121569, 0.137255, 0.14902, 1)