aboutsummaryrefslogtreecommitdiff
path: root/client/scripts/map/full_tile.gd
diff options
context:
space:
mode:
Diffstat (limited to 'client/scripts/map/full_tile.gd')
-rw-r--r--client/scripts/map/full_tile.gd15
1 files changed, 0 insertions, 15 deletions
diff --git a/client/scripts/map/full_tile.gd b/client/scripts/map/full_tile.gd
deleted file mode 100644
index a986b053..00000000
--- a/client/scripts/map/full_tile.gd
+++ /dev/null
@@ -1,15 +0,0 @@
-class_name FullTile
-extends Floor
-
-var static_body = StaticBody3D.new()
-
-func setup(rename: String, neighbors: Array):
- super.setup(rename, neighbors)
- var shape = CollisionShape3D.new()
- var box = BoxShape3D.new()
- shape.position.y += .5
- shape.shape = box
- shape.name = "Box"
- static_body.add_child(shape)
- static_body.name = "Body"
- base.add_child(static_body)