我想用动画克隆FBX模型。我正在使用cloneFbx.js。可以克隆网格,但是尝试播放动画会导致错误。
var clone = cloneFbx( fbxmesh );
var animation = clone.animations[0];
var mixer = new THREE.AnimationMixer(clone);
mixer.clipAction(animation).play(); // <- this line causes the error
Uncaught TypeError: a.skeleton.getBoneByName is not a function