aboutsummaryrefslogtreecommitdiff
path: root/client/map/tiles/window.gd
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2025-09-28 16:56:19 +0200
committermetamuffin <metamuffin@disroot.org>2025-09-28 16:56:21 +0200
commitcebf9b44a6fa2c74643105bea773adaf0d6ee49a (patch)
tree5c785a13a5725c6d755fd3b4dcc378b5307fd8f2 /client/map/tiles/window.gd
parent7dc877d87044d12b185aa402420fb493db94e55a (diff)
downloadhurrycurry-cebf9b44a6fa2c74643105bea773adaf0d6ee49a.tar
hurrycurry-cebf9b44a6fa2c74643105bea773adaf0d6ee49a.tar.bz2
hurrycurry-cebf9b44a6fa2c74643105bea773adaf0d6ee49a.tar.zst
Add colorful walls
Diffstat (limited to 'client/map/tiles/window.gd')
-rw-r--r--client/map/tiles/window.gd4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/map/tiles/window.gd b/client/map/tiles/window.gd
index 9b95ff4c..da0963ed 100644
--- a/client/map/tiles/window.gd
+++ b/client/map/tiles/window.gd
@@ -23,7 +23,7 @@ func _init(ctx: TileFactory.TileCC):
super(ctx)
match kind:
WallKind.STRAIGHT:
- base.add_child(load("res://map/tiles/window.tscn").instantiate())
+ add_dyed_mesh(ctx, load("res://map/tiles/window.tscn").instantiate())
WallKind.OUTER_CORNER:
push_warning("There is no corner window!")
- base.add_child(load("res://map/tiles/window.tscn").instantiate())
+ add_dyed_mesh(ctx, load("res://map/tiles/window.tscn").instantiate())