该模型的动画没有播放。这是我遵循的步骤:
我首先从mixamo下载了一个“ Walking.dae” collada文件
然后我使用KhronosGroup / glTF在线转换器将collada格式转换为.gltf 2.0。
问题:
我从浏览器控制台中立即观察到的第一个问题如下:'components:gltf-model:warn无法加载glTF模型。那么KhronosGroup / glTF在线转换器是否存在转换问题?
我已尽力而为,但是找不到我们在<script scr="path">
中使用的网址。可以向我提供don mccurdy提供的animation-mixer.js文件的“路径”吗?
代码:
<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相同的文件夹中。这是结构:
任何帮助将不胜感激。预先感谢。