1
0
Fork 0
spacetac/project.godot

60 lines
1.1 KiB
Plaintext
Raw Normal View History

2022-10-06 13:41:45 +00:00
; 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
_global_script_classes=[{
"base": "Node2D",
"class": &"Composer",
"language": &"GDScript",
"path": "res://core/composer.gd"
}, {
2022-10-05 23:21:40 +00:00
"base": "Node",
"class": &"Player",
"language": &"GDScript",
"path": "res://core/player.gd"
}, {
2022-10-06 13:41:45 +00:00
"base": "Composer",
"class": &"Spawner",
"language": &"GDScript",
"path": "res://core/spawner.gd"
}, {
"base": "Composer",
"class": &"Unit",
"language": &"GDScript",
"path": "res://core/unit.gd"
2022-10-05 23:21:40 +00:00
}, {
"base": "Composer",
"class": &"Weapon",
"language": &"GDScript",
"path": "res://core/weapon.gd"
2022-10-06 13:41:45 +00:00
}]
_global_script_class_icons={
"Composer": "",
2022-10-05 23:21:40 +00:00
"Player": "",
2022-10-06 13:41:45 +00:00
"Spawner": "",
2022-10-05 23:21:40 +00:00
"Unit": "",
"Weapon": ""
2022-10-06 13:41:45 +00:00
}
[application]
config/name="spacetac"
run/main_scene="res://main.tscn"
config/features=PackedStringArray("4.0", "Mobile")
config/icon="res://icon.svg"
2022-10-06 04:23:41 +00:00
[display]
window/size/viewport_width=1280
window/size/viewport_height=720
2022-10-06 13:41:45 +00:00
[rendering]
renderer/rendering_method="mobile"