summaryrefslogtreecommitdiffstats
path: root/Chunk.gd
diff options
context:
space:
mode:
Diffstat (limited to 'Chunk.gd')
-rw-r--r--Chunk.gd16
1 files changed, 0 insertions, 16 deletions
diff --git a/Chunk.gd b/Chunk.gd
deleted file mode 100644
index 7c5c1c3..0000000
--- a/Chunk.gd
+++ /dev/null
@@ -1,16 +0,0 @@
-extends Area
-
-enum LOD {DISTANCE,MID,CLOSE}
-var lod = -1
-
-func lod_update():
- for obj in $"gen_tree".get_children():
- match lod:
- LOD.CLOSE:
- obj.lod_close()
- LOD.MID:
- obj.lod_mid()
- LOD.DISTANCE:
- obj.lod_distance()
- _:
- obj.lod_distance()