Create room 046 (Tower Stairway) and wire to room 045

- Added kq4_046_tower_stairway scene
- South exit to room 045 (Genesta's Bed Chamber) - bidirectional connection
- North exit to room 047 (Tower Chamber) - room 047 doesn't exist yet, transition pending
- Updated room 045 to add return transition to room 046
This commit is contained in:
2026-03-10 13:38:38 -07:00
parent 7fafb34f28
commit e5d3d24051
7 changed files with 126 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
extends Scene
func _on_tower_chamber_interacted() -> void:
# Room 047 doesn't exist yet - this will be wired when room 047 is created
push_warning("Room 047 (Tower Chamber) not yet created. Cannot transition.")
func _on_genestas_bed_chamber_interacted() -> void:
$kq4_045_genestas_bed_chamber.default_script(self)