diff options
Diffstat (limited to 'client/scripts/map/full_tile.gd')
-rw-r--r-- | client/scripts/map/full_tile.gd | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/client/scripts/map/full_tile.gd b/client/scripts/map/full_tile.gd new file mode 100644 index 00000000..c05e0457 --- /dev/null +++ b/client/scripts/map/full_tile.gd @@ -0,0 +1,13 @@ +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 + static_body.add_child(shape) + base.add_child(static_body) |