22 lines
460 B
GDScript
22 lines
460 B
GDScript
extends Scene
|
|
|
|
|
|
func _on_meadow_interacted() -> void:
|
|
$kq4_002_meadow.default_script(self)
|
|
|
|
|
|
func _on_ogre_house_interacted() -> void:
|
|
$kq4_004_ogres_cottage.default_script(self)
|
|
|
|
|
|
func _on_shady_wooded_area_interacted() -> void:
|
|
$kq4_009_shady_wooded_area.default_script(self)
|
|
|
|
|
|
func _on_forest_path_interacted() -> void:
|
|
$kq4_010_forest_path.default_script(self)
|
|
|
|
|
|
func _on_forest_path_27_interacted() -> void:
|
|
$kq4_027_forest_path.default_script(self)
|