diff options
author | nokoe <nokoe@mailbox.org> | 2024-06-21 00:47:57 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-06-23 19:25:29 +0200 |
commit | b430895ea49ebeb0359a2d36164832303aaf757d (patch) | |
tree | 651c4e1e0a9e22207607eba0c15da6c02374ead6 /client/scripts/tiles/trash.gd | |
parent | 4f19a2cd91b099dc2e0d6c673d853befc7044340 (diff) | |
download | hurrycurry-b430895ea49ebeb0359a2d36164832303aaf757d.tar hurrycurry-b430895ea49ebeb0359a2d36164832303aaf757d.tar.bz2 hurrycurry-b430895ea49ebeb0359a2d36164832303aaf757d.tar.zst |
add door
Diffstat (limited to 'client/scripts/tiles/trash.gd')
-rw-r--r-- | client/scripts/tiles/trash.gd | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/client/scripts/tiles/trash.gd b/client/scripts/tiles/trash.gd new file mode 100644 index 00000000..1ec05e49 --- /dev/null +++ b/client/scripts/tiles/trash.gd @@ -0,0 +1,6 @@ +class_name Trash +extends FullTile + +func setup(rename: String, neighbors: Array): + super.setup(rename, neighbors) + base.add_child(load("res://models/prefabs/map/crate_trash.tscn").instantiate()) |