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 | game_jam49-32bf9d2024362d45dc351c8f1d0b3b301caf1131.tar.gz game_jam49-32bf9d2024362d45dc351c8f1d0b3b301caf1131.zip |
Organize World Gen Stuff
Diffstat (limited to 'Chunk.tscn')
-rw-r--r-- | Chunk.tscn | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/Chunk.tscn b/Chunk.tscn deleted file mode 100644 index 8f5ea84..0000000 --- a/Chunk.tscn +++ /dev/null @@ -1,36 +0,0 @@ -[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] - -[sub_resource type="SphereShape" id=1] -radius = 50.0 - -[sub_resource type="SpatialMaterial" id=3] -flags_unshaded = true -params_cull_mode = 2 -albedo_color = Color( 0.937255, 0, 1, 1 ) - -[sub_resource type="PlaneMesh" id=2] -size = Vector2( 100, 100 ) - -[sub_resource type="PlaneMesh" id=4] -size = Vector2( 98, 98 ) - -[node name="Chunk" type="Area"] -collision_layer = 32 -collision_mask = 0 -script = ExtResource( 1 ) - -[node name="Size" type="CollisionShape" parent="."] -shape = SubResource( 1 ) - -[node name="Border" type="CSGMesh" parent="."] -material_override = SubResource( 3 ) -script = ExtResource( 3 ) -_mesh = SubResource( 2 ) - -[node name="CSGMesh" type="CSGMesh" parent="Border"] -operation = 2 -script = ExtResource( 3 ) -_mesh = SubResource( 4 ) |