8 lines
155 B
GDScript
8 lines
155 B
GDScript
extends Node2D
|
|
|
|
func _ready() -> void:
|
|
get_node("AnimatedSprite2D").play("play")
|
|
|
|
func _on_animated_sprite_2d_animation_finished() -> void:
|
|
queue_free()
|