Hi there,
I have a problem playing all animations from a glb at the same time. The animations work, if I play only one of the file, but playing them all at once, it looks like it’s only working for the first two clips.
const animationGroup = new THREE.AnimationObjectGroup;
const mixer = new THREE.AnimationMixer(animationGroup);
const mixer = mixer;
const animationObject = Scene.find( o => o.animationClips);
animationObject.animationClips.forEach( clip => {
const action = mixer.clipAction(clip));
action.clampWhenFinished = true;
action.loop = THREE.LoopOnce;
action.play();
}
Thanks for any help!