18 lines
388 B
GDScript
18 lines
388 B
GDScript
extends Scene
|
|
|
|
|
|
func _on_frog_pond_interacted() -> void:
|
|
$kq4_015_frog_pond.default_script(self)
|
|
|
|
|
|
func _on_forest_path_interacted() -> void:
|
|
$kq4_010_forest_path.default_script(self)
|
|
|
|
|
|
func _on_gnomes_cottage_interacted() -> void:
|
|
$kq4_022_gnomes_cottage.default_script(self)
|
|
|
|
|
|
func _on_spooky_house_exterior_interacted() -> void:
|
|
$kq4_017_spooky_house_exterior.default_script(self)
|