diff options
Diffstat (limited to 'project.godot')
-rw-r--r-- | project.godot | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/project.godot b/project.godot index 0b05f85..67ac57f 100644 --- a/project.godot +++ b/project.godot @@ -9,12 +9,24 @@ config_version=4 _global_script_classes=[ { +"base": "Monument", +"class": "DockMonument", +"language": "GDScript", +"path": "res://world/monuments/DockMonument.gd" +}, { +"base": "Reference", +"class": "Monument", +"language": "GDScript", +"path": "res://world/monuments/Monument.gd" +}, { "base": "Resource", "class": "Wave", "language": "GDScript", "path": "res://water/Wave.gd" } ] _global_script_class_icons={ +"DockMonument": "", +"Monument": "", "Wave": "" } @@ -27,6 +39,8 @@ config/icon="res://icon.png" [autoload] Settings="*res://singletons/settings.gd" +ChunkLoader="*res://world/chunk/ChunkLoader.gd" +ChunkGen="*res://world/chunk/ChunkGen.gd" [display] @@ -110,6 +124,9 @@ camera_swap={ 3d_physics/layer_4="Obstacles" 3d_physics/layer_5="Items" 3d_physics/layer_6="World Gen" +3d_physics/layer_7="Death Plane" +3d_physics/layer_8="Triggers" +3d_physics/layer_9="Interactables" [physics] @@ -117,5 +134,6 @@ common/enable_pause_aware_picking=true [rendering] +threads/thread_model=2 quality/filters/msaa=3 environment/default_environment="res://default_env.tres" |