From 7f8115e6a398013a5644da2b8a30cbce68735877 Mon Sep 17 00:00:00 2001 From: Dendy Faist Date: Fri, 6 Mar 2026 10:06:09 +0100 Subject: [PATCH] feat: Scale whole station with chunk_size changes --- station.gd | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/station.gd b/station.gd index b353f11..1379578 100644 --- a/station.gd +++ b/station.gd @@ -1,7 +1,8 @@ extends Node3D func _ready() -> void: - $Mesh.mesh.size.x = Global.chunk_size - $Mesh.mesh.size.y = Global.chunk_size + scale *= Global.chunk_size / 150 + #$Mesh.mesh.size.x = Global.chunk_size + #$Mesh.mesh.size.y = Global.chunk_size #$StationArea/CollisionShape3D.shape.size.x = Global.chunk_size * 0.50 #$StationArea/CollisionShape3D.shape.size.z = Global.chunk_size * 0.50