8 lines
123 B
GDScript
8 lines
123 B
GDScript
extends Node2D
|
|
|
|
@onready var anim := $AnimationPlayer as AnimationPlayer
|
|
|
|
|
|
func _ready() -> void:
|
|
anim.play("DEFAULT")
|