通过three.js将gltf模型添加到一帧场景

时间:2018-02-21 22:33:13

标签: javascript animation three.js aframe gltf


如何使用javascript而不是a-frame标签直接通过three.js 加载器将gltf-model加载到一帧场景?

模型将有动画,而且我想通过three.js控制这个动画。

提前致谢。

1 个答案:

答案 0 :(得分:0)

您应该创建一个component,其中包含three.js gltf loader,如下所示:

AFRAME.registerComponent("model-loader",
   init:function() {
   //three js loader code + attaching it to the entity's object3D
   }
});

由于我使用khronos exporter制作了多个动画时出现问题,如果您想让其中许多动画尝试使用three.js JSON

如果您在执行任何步骤时遇到问题,我会说每个步骤都需要单独关注,因此请创建不太广泛的问题。