- Created 45 new room scenes from specs - Added proper .tscn and .gd files for each room - Wired up transitions based on spec exit information - Connected to existing rooms (017, 022, 028, 030, 031) where applicable - Rooms include: dwarfs areas, caves, swamp, castle, and more
16 lines
380 B
GDScript
16 lines
380 B
GDScript
extends Node2D
|
|
class_name OldKitchen
|
|
|
|
@onready var ego: Node2D = $"../ego"
|
|
|
|
func _ready() -> void:
|
|
pass
|
|
|
|
func _on_room_looked() -> void:
|
|
pass
|
|
|
|
func _on_kq4_064_old_dining_room_interacted() -> void:
|
|
var target_scene = load("res://scenes/kq4_064_old_dining_room/kq4_064_old_dining_room.tscn")
|
|
if target_scene:
|
|
get_tree().change_scene_to_packed(target_scene)
|