diff options
author | dusoleil <howcansocksbereal@gmail.com> | 2022-09-18 19:38:35 -0400 |
---|---|---|
committer | dusoleil <howcansocksbereal@gmail.com> | 2022-09-18 19:42:01 -0400 |
commit | 32bf9d2024362d45dc351c8f1d0b3b301caf1131 (patch) | |
tree | fb6540bce94cb55c6123ecfe1327abeabea2925f /Chunk.tscn | |
parent | ffc92ed12c6e680776d355ff9fcef70e5e28d7c8 (diff) | |
download | godot_wildjam_49-32bf9d2024362d45dc351c8f1d0b3b301caf1131.tar.gz godot_wildjam_49-32bf9d2024362d45dc351c8f1d0b3b301caf1131.zip |
Organize World Gen Stuff
Diffstat (limited to '')
-rw-r--r-- | world/chunk/Chunk.tscn (renamed from Chunk.tscn) | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Chunk.tscn b/world/chunk/Chunk.tscn index 8f5ea84..4ce985b 100644 --- a/Chunk.tscn +++ b/world/chunk/Chunk.tscn @@ -1,7 +1,7 @@ [gd_scene load_steps=7 format=2] -[ext_resource path="res://Chunk.gd" type="Script" id=1] -[ext_resource path="res://ChunkedCSGMesh.gd" type="Script" id=3] +[ext_resource path="res://world/chunk/Chunk.gd" type="Script" id=1] +[ext_resource path="res://world/chunk/helper/ChunkedCSGMesh.gd" type="Script" id=2] [sub_resource type="SphereShape" id=1] radius = 50.0 @@ -27,10 +27,10 @@ shape = SubResource( 1 ) [node name="Border" type="CSGMesh" parent="."] material_override = SubResource( 3 ) -script = ExtResource( 3 ) +script = ExtResource( 2 ) _mesh = SubResource( 2 ) [node name="CSGMesh" type="CSGMesh" parent="Border"] operation = 2 -script = ExtResource( 3 ) +script = ExtResource( 2 ) _mesh = SubResource( 4 ) |