forked from team-sg/hero-mark-2
7 lines
134 B
GDScript
7 lines
134 B
GDScript
extends Node2D
|
|
|
|
func _ready():
|
|
$AnimationPlayer.play("block")
|
|
|
|
func _on_AnimationPlayer_animation_finished(anim_name):
|
|
queue_free()
|