10 lines
188 B
GDScript
10 lines
188 B
GDScript
extends Scene
|
|
|
|
|
|
func _on_ogre_house_interacted() -> void:
|
|
$"ogre".default_script(self) # Replace with function body.
|
|
|
|
|
|
func _on_meadow_interacted() -> void:
|
|
$meadow.default_script(self)
|