SpaceServer/project.godot

53 lines
1.1 KiB
Plaintext
Raw Normal View History

2020-02-04 16:46:32 +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=4
2020-08-16 12:11:59 +00:00
_global_script_classes=[ {
"base": "Reference",
"class": "Plan",
"language": "GDScript",
"path": "res://Scripts/Plan.gd"
}, {
"base": "Reference",
"class": "PlanElement",
"language": "GDScript",
"path": "res://Scripts/PlanElement.gd"
}, {
"base": "Reference",
"class": "ThrustElement",
"language": "GDScript",
"path": "res://Scripts/ThrustElement.gd"
2020-08-29 16:33:30 +00:00
}, {
"base": "Reference",
"class": "WeaponsElement",
"language": "GDScript",
"path": "res://Scripts/WeaponsElement.gd"
2020-08-16 12:11:59 +00:00
} ]
2020-02-04 16:46:32 +00:00
_global_script_class_icons={
2020-08-16 12:11:59 +00:00
"Plan": "",
"PlanElement": "",
2020-08-29 16:33:30 +00:00
"ThrustElement": "",
"WeaponsElement": ""
2020-02-04 16:46:32 +00:00
}
[application]
config/name="Server"
run/main_scene="res://Scenes/RootNode.tscn"
config/icon="res://icon.png"
[physics]
2021-07-04 18:21:40 +00:00
3d/physics_engine="GodotPhysics"
3d/default_gravity=0.0
2020-02-04 16:46:32 +00:00
[rendering]
environment/default_environment="res://default_env.tres"