about summary refs log tree commit diff stats
path: root/apworld/client/maps/the_unyielding.gd
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2025-11-04 14:56:04 -0500
committerStar Rauchenberger <fefferburbia@gmail.com>2025-11-04 14:56:04 -0500
commit452289b3b6247bb512b9353e0f2c6a9b7090be55 (patch)
tree499bb3c365cb91cb161b8b0e9bf51c6d5c0d72f8 /apworld/client/maps/the_unyielding.gd
parent24a59794f408c6aa878a8477a920a1d7b7d9c4c5 (diff)
downloadlingo2-archipelago-452289b3b6247bb512b9353e0f2c6a9b7090be55.tar.gz
lingo2-archipelago-452289b3b6247bb512b9353e0f2c6a9b7090be55.tar.bz2
lingo2-archipelago-452289b3b6247bb512b9353e0f2c6a9b7090be55.zip
Split map-specific initialization into separate files
Diffstat (limited to 'apworld/client/maps/the_unyielding.gd')
-rw-r--r--apworld/client/maps/the_unyielding.gd5
1 files changed, 5 insertions, 0 deletions
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 @@
1func on_map_load(root):
2 # Shrink the painting trigger in The Unyielding.
3 var trigger_area = root.get_node("/root/scene/Components/PaintingUnlocker/triggerArea")
4 trigger_area.position = Vector3(0, 0, -6)
5 trigger_area.scale = Vector3(6, 1, 6)