12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- ; 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": "Polygon2D",
- "class": "Circle",
- "language": "GDScript",
- "path": "res://Circle.gd"
- }, {
- "base": "Line2D",
- "class": "CircleOutline",
- "language": "GDScript",
- "path": "res://CircleOutline.gd"
- }, {
- "base": "Label",
- "class": "FontedLabel",
- "language": "GDScript",
- "path": "res://FontedLabel.gd"
- }, {
- "base": "ColorRect",
- "class": "JamProgressBar",
- "language": "GDScript",
- "path": "res://JAM_PROGRESS_BAR.gd"
- }, {
- "base": "ColorRect",
- "class": "PingRect",
- "language": "GDScript",
- "path": "res://PING_RECT.gd"
- }, {
- "base": "Node2D",
- "class": "Planet",
- "language": "GDScript",
- "path": "res://PlanetNode.gd"
- }, {
- "base": "ColorRect",
- "class": "TimeLeftBar",
- "language": "GDScript",
- "path": "res://TIME_LEFT_BAR.gd"
- } ]
- _global_script_class_icons={
- "Circle": "",
- "CircleOutline": "",
- "FontedLabel": "",
- "JamProgressBar": "",
- "PingRect": "",
- "Planet": "",
- "TimeLeftBar": ""
- }
- [application]
- config/name="SpacePing"
- run/main_scene="res://MAIN.tscn"
- config/icon="res://icon.png"
- [display]
- window/size/resizable=false
- [rendering]
- quality/driver/driver_name="GLES2"
- vram_compression/import_etc=true
- vram_compression/import_etc2=false
- environment/default_environment="res://default_env.tres"
|