edbeeching's picture
edbeeching HF Staff
Upload folder using huggingface_hub
0cbdcec verified
Raw
History Blame Contribute Delete
151 Bytes
extends Node3D
@onready var player = $AnimationPlayer
func set_animation(anim):
if player.current_animation == anim:
return
player.play(anim)