8 lines
130 B
GDScript
8 lines
130 B
GDScript
extends AnimatedSprite2D
|
|
|
|
|
|
# Called when the node enters the scene tree for the first time.
|
|
func _ready() -> void:
|
|
self.play()
|
|
|