summaryrefslogtreecommitdiffstats
path: root/World.tscn
diff options
context:
space:
mode:
Diffstat (limited to 'World.tscn')
-rw-r--r--World.tscn22
1 files changed, 11 insertions, 11 deletions
diff --git a/World.tscn b/World.tscn
index db93160..3bdf371 100644
--- a/World.tscn
+++ b/World.tscn
@@ -1,17 +1,24 @@
-[gd_scene load_steps=5 format=2]
+[gd_scene load_steps=9 format=2]
[ext_resource path="res://World.gd" type="Script" id=1]
[ext_resource path="res://Chunk.tscn" type="PackedScene" id=3]
-[sub_resource type="BoxShape" id=23]
-
[sub_resource type="SphereShape" id=24]
-radius = 300.0
+radius = 500.0
+
+[sub_resource type="BoxShape" id=23]
[node name="World" type="Spatial"]
script = ExtResource( 1 )
acceleration = 50.0
+[node name="ChunkRenderDistance" type="Area" parent="."]
+collision_layer = 0
+collision_mask = 32
+
+[node name="Radius" type="CollisionShape" parent="ChunkRenderDistance"]
+shape = SubResource( 24 )
+
[node name="Chunks" type="RigidBody" parent="."]
collision_layer = 0
collision_mask = 0
@@ -29,11 +36,4 @@ shape = SubResource( 23 )
visible = false
collision_layer = 0
-[node name="ChunkRenderDistance" type="Area" parent="."]
-collision_layer = 0
-collision_mask = 32
-
-[node name="Radius" type="CollisionShape" parent="ChunkRenderDistance"]
-shape = SubResource( 24 )
-
[connection signal="area_exited" from="ChunkRenderDistance" to="." method="_on_ChunkRenderDistance_area_exited"]