cc.tween在repeat时的BUG

  • Creator 版本:2.4.15

  • 目标平台:PC浏览器

  • 重现方式:
    const tw = cc.tween()
    .to(0.5, { scale: 2 }) // 第一个参数小于0.5时可正常执行,大于0.5时缓动会停住
    .to(0.5, { scale: 1 });
    cc.tween(this.node)
    .repeat(cc.macro.REPEAT_FOREVER, tw) // 是否repeat里面的tw的总时长不能超过1秒
    .start();