9 lines
115 B
GDScript
9 lines
115 B
GDScript
extends AnimatedSprite2D
|
|
|
|
func _ready():
|
|
frame = 0
|
|
play("Animate")
|
|
|
|
func _on_animation_finished():
|
|
queue_free()
|