Gallery/animation_player.gd
2025-05-03 12:00:38 -06:00

12 lines
275 B
GDScript

extends AnimationPlayer
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
play("CubeAction001")
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta: float) -> void:
play("CubeAction001")