From 452289b3b6247bb512b9353e0f2c6a9b7090be55 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Tue, 4 Nov 2025 14:56:04 -0500 Subject: Split map-specific initialization into separate files --- apworld/client/maps/the_unyielding.gd | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 apworld/client/maps/the_unyielding.gd (limited to 'apworld/client/maps/the_unyielding.gd') diff --git a/apworld/client/maps/the_unyielding.gd b/apworld/client/maps/the_unyielding.gd new file mode 100644 index 0000000..a2f8eee --- /dev/null +++ b/apworld/client/maps/the_unyielding.gd @@ -0,0 +1,5 @@ +func on_map_load(root): + # Shrink the painting trigger in The Unyielding. + var trigger_area = root.get_node("/root/scene/Components/PaintingUnlocker/triggerArea") + trigger_area.position = Vector3(0, 0, -6) + trigger_area.scale = Vector3(6, 1, 6) -- cgit 1.4.1