summaryrefslogtreecommitdiffstats
path: root/Rock.gd
diff options
context:
space:
mode:
authordusoleil <howcansocksbereal@gmail.com>2022-09-18 19:38:35 -0400
committerdusoleil <howcansocksbereal@gmail.com>2022-09-18 19:42:01 -0400
commit32bf9d2024362d45dc351c8f1d0b3b301caf1131 (patch)
treefb6540bce94cb55c6123ecfe1327abeabea2925f /Rock.gd
parentffc92ed12c6e680776d355ff9fcef70e5e28d7c8 (diff)
downloadgame_jam49-32bf9d2024362d45dc351c8f1d0b3b301caf1131.tar.gz
game_jam49-32bf9d2024362d45dc351c8f1d0b3b301caf1131.zip
Organize World Gen Stuff
Diffstat (limited to 'Rock.gd')
-rw-r--r--Rock.gd18
1 files changed, 0 insertions, 18 deletions
diff --git a/Rock.gd b/Rock.gd
deleted file mode 100644
index 577e626..0000000
--- a/Rock.gd
+++ /dev/null
@@ -1,18 +0,0 @@
-extends StaticBody
-
-onready var collision_enabled = self.collision_layer
-
-func lod_distance():
- $"MeshInstance".visible = false
- $"MeshInstance2".visible = true
- self.collision_layer = 0
-
-func lod_mid():
- $"MeshInstance".visible = true
- $"MeshInstance2".visible = false
- self.collision_layer = 0
-
-func lod_close():
- $"MeshInstance".visible = true
- $"MeshInstance2".visible = false
- self.collision_layer = collision_enabled