12345678910111213141516171819202122232425262728293031323334353637383940 |
- ; Engine configuration file.
- ; It's best edited using the editor UI and not directly,
- ; since the parameters that go here are not all obvious.
- ;
- ; Format:
- ; [section] ; section goes between []
- ; param=value ; assign values to parameters
- config_version=5
- [application]
- config/name="Mir of Godot"
- config/version="1.0.0"
- run/main_scene="res://scenes/launch/launch.tscn"
- config/features=PackedStringArray("4.2", "Mobile")
- boot_splash/bg_color=Color(0, 0, 0, 1)
- config/icon="res://assets/icon.svg"
- [autoload]
- Global="*res://scripts/framework/global.gd"
- Server="*res://scripts/framework/server/server.gd"
- Client="*res://scripts/framework/client/client.gd"
- Request="*res://scripts/framework/utils/request.gd"
- [display]
- window/size/viewport_width=1280
- window/size/viewport_height=720
- window/stretch/scale_mode="integer"
- [filesystem]
- import/blender/enabled=false
- [rendering]
- renderer/rendering_method="mobile"
- environment/defaults/default_clear_color=Color(0, 0, 0, 1)
|