project.godot (725B)
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 9 config_version=5 10 11 [application] 12 13 config/name="Conway's Life" 14 config/version="0.0.1" 15 run/main_scene="res://scenes/main.tscn" 16 config/features=PackedStringArray("4.3", "GL Compatibility") 17 config/icon="res://icon.svg" 18 19 [display] 20 21 window/size/viewport_width=1280 22 window/size/viewport_height=720 23 window/size/mode=2 24 window/size/resizable=false 25 window/stretch/mode="canvas_items" 26 27 [rendering] 28 29 renderer/rendering_method="gl_compatibility" 30 renderer/rendering_method.mobile="gl_compatibility"