Aframe:动画无法在mixamo的collada模型上使用

时间:2018-11-19 15:24:55

标签: aframe gltf

该模型的动画没有播放。这是我遵循的步骤:

  1. 我首先从mixamo下载了一个“ Walking.dae” collada文件

  2. 然后我使用KhronosGroup / glTF在线转换器将collada格式转换为.gltf 2.0。

  3. 然后我在代码中使用了don mccurdy的动画混合器。

问题:

  1. 我从浏览器控制台中立即观察到的第一个问题如下:'components:gltf-model:warn无法加载glTF模型。那么KhronosGroup / glTF在线转换器是否存在转换问题?

  2. 我已尽力而为,但是找不到我们在<script scr="path">中使用的网址。可以向我提供don mccurdy提供的animation-mixer.js文件的“路径”吗?

  3. 最后这是我的模型可以用来显示动画的代码吗?

代码:

<html>
<head>
    <script src="https://aframe.io/releases/0.8.0/aframe.min.js"></script>
    <!--script url for animation mixer from don mccurdy-->  
</head>
<body>
    <a-scene>
    <a-sky color="#6EBAA7"></a-sky>
        <a-entity gltf-model="Walking.gltf" animation-mixer="clip: Idle"></a-entity>
        <a-entity position="0 1 2"><a-camera></a-camera></a-entity>
    </a-scene>
</body>
</html>

已从Mixamo下载了模型和动画。我还将下载的.dae文件放置在与正在运行的html相同的文件夹中。这是结构:

The directory structure

任何帮助将不胜感激。预先感谢。

0 个答案:

没有答案