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