aboutsummaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authornokoe <nokoe@mailbox.org>2024-07-11 17:54:35 +0200
committernokoe <nokoe@mailbox.org>2024-07-11 17:54:49 +0200
commita2583d0f8be4af7890ace52d49fe99b7861e97b2 (patch)
tree674ba9d3dec574dde7950efde99191faf5a53100 /client
parentdf7aac50092ba8d239a052315dd9aad59b14ef2e (diff)
downloadhurrycurry-a2583d0f8be4af7890ace52d49fe99b7861e97b2.tar
hurrycurry-a2583d0f8be4af7890ace52d49fe99b7861e97b2.tar.bz2
hurrycurry-a2583d0f8be4af7890ace52d49fe99b7861e97b2.tar.zst
add auto_sushi map
Diffstat (limited to 'client')
-rw-r--r--client/map/tiles/chair.gd4
-rw-r--r--client/map/tiles/wall_cross.tscn1
2 files changed, 5 insertions, 0 deletions
diff --git a/client/map/tiles/chair.gd b/client/map/tiles/chair.gd
index 54fe7f0c..f45de00c 100644
--- a/client/map/tiles/chair.gd
+++ b/client/map/tiles/chair.gd
@@ -21,6 +21,10 @@ func _init(rename: String, neighbors: Array):
var chair = preload("res://map/tiles/chair.tscn").instantiate()
var facing = 0;
for i in range(4):
+ if neighbors[i] == "conveyor":
+ facing = i
+ break
+ for i in range(4):
if neighbors[i] == "table":
facing = i
break
diff --git a/client/map/tiles/wall_cross.tscn b/client/map/tiles/wall_cross.tscn
index 7cac188d..15a8b24a 100644
--- a/client/map/tiles/wall_cross.tscn
+++ b/client/map/tiles/wall_cross.tscn
@@ -5,5 +5,6 @@
[node name="WallCross" type="Node3D"]
[node name="Mesh" type="MeshInstance3D" parent="."]
+transform = Transform3D(0.5, 0, 0, 0, 0.5, 0, 0, 0, 0.5, 0, 0, 0)
mesh = ExtResource("1_cq25f")
skeleton = NodePath("")