Datasets:
Formats:
imagefolder
Size:
< 1K
File size: 221 Bytes
8921443 |
1 2 3 4 5 6 7 8 9 10 |
extends Node3D
@onready var anim = $AnimationPlayer
# Called when the node enters the scene tree for the first time.
func _ready():
get_node("AnimationPlayer").get_animation("Main")#.set_loop(true)
anim.play("Main")
|