9 lines
129 B
GDScript
9 lines
129 B
GDScript
extends TileMap
|
|
|
|
func _on_Lever_on():
|
|
$AnimationPlayer.play("Appearing Platform")
|
|
|
|
|
|
func _on_Lever_off():
|
|
queue_free()
|