12 lines
197 B
GDScript
12 lines
197 B
GDScript
extends Scene
|
|
|
|
|
|
# Called when the node enters the scene tree for the first time.
|
|
func _ready():
|
|
super()
|
|
pass # Replace with function body.
|
|
|
|
|
|
func _on_pit_interacted():
|
|
$pit.default_script(self)
|