12345678910111213141516171819202122232425262728293031323334353637 |
- ; 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=4
- _global_script_classes=[ {
- "base": "RigidBody2D",
- "class": "Enemy",
- "language": "GDScript",
- "path": "res://Enemy.gd"
- } ]
- _global_script_class_icons={
- "Enemy": ""
- }
- [application]
- config/name="DodgeTheCreep"
- run/main_scene="res://Main.tscn"
- config/icon="res://icon.png"
- [display]
- window/size/width=480
- window/size/height=720
- window/size/resizable=false
- window/stretch/mode="2d"
- window/stretch/aspect="keep"
- [rendering]
- environment/default_environment="res://default_env.tres"
|