3.6.2序列帧动画暂停在某一帧

使用Animation组件,在creator3.6.2播放序列帧动画,想要停止动画后,重置到首帧,发现setTime(0)后无效

    最后添加了update才成功设置好首帧,项目是从2.4.6直接升级过来的,问题颇多    
    let laba = this.eSoundAnim.getComponent(Animation).getState("laba")
    laba.setTime(0)
    laba.update(1/60)
    laba.pause()
3赞