Gallery/animation_player.gd

12 lines
275 B
GDScript3
Raw Normal View History

2025-05-03 17:58:07 +00:00
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")