如何使用three.js旋转glTF文件的节点

时间:2018-07-10 08:04:49

标签: three.js gltf

Am使用THREE.glTF加载程序将web的glTF文件加载到 文件已加载且动画正在运行。

代码:

/*gltf loader*/
var loader = new THREE.GLTFLoader(manager);
loader.load(  file_path , function ( data ) { }, function ( error ) { } );

/*play animations*/
var mixer = new THREE.AnimationMixer(gltf.scene);
mixers.push(mixer);

gltf.animations.forEach((clip) => {
    for (i = 0; i < mixers.length; i++) {
          mixers[i].clipAction(clip).reset().play();
     }
});

如何使用three.js旋转节点?

预先感谢

1 个答案:

答案 0 :(得分:0)

有一个方法object3D.rotation(x,y,z)。

如果您要绕行轨道,请检查物体Orbit Controls