0

我有一个动画,当我按下连接的 uibutton 时,动画会播放,但是,动画第一次播放时它在开始之前会有一点延迟。

在 js 文件中,我将有五个动画,因此单击它会连续播放。

我怎样才能消除这种延迟?

谢谢!

   const animationList = ['Idle_static', 'open', 'close', 'popup']

    let idx = 1  // Start with the 2nd animation because the model starts with idle animation

    const nextAnimation = () => {
      newElement.setAttribute('animation-mixer', {
        clip: animationList[idx],
        repetitions: 1,
        crossFadeDuration: 0.4,
        clampWhenFinished: true,
      })

      idx = (idx + 1) % animationList.length
    }

    nextButton.onclick = nextAnimation
4

1 回答 1

1

首先将您的模型上传到在线 glb 预览器工具之一,以查看在播放/切换动画时是否也可以看到延迟。

https://gltf-viewer.donmccurdy.com/

https://www.creators3d.com/online-viewer

另外,尝试使用 Facebook fbx -> glb 转换器。其他一些转换器不能正确处理动画时间线。可以在https://www.8thwall.com/glb找到指向它的链接和其他转换器工具

于 2020-10-16T19:45:08.237 回答