美文网首页
cc.tween 循环执行一组动作

cc.tween 循环执行一组动作

作者: 人气小哥 | 来源:发表于2021-03-10 14:53 被阅读0次

    这个文档上没有 还是群里大牛说的
    ···
    cc.tween(this.icon)
    .to(1, {scale: 2}) // node.scale === 2
    .by(1, {scale: 2}) // node.scale === 4 (2 + 2)
    .by(1, {scale: 1}) // node.scale === 5
    .to(1, {scale: 2}) // node.scale === 2
    .union()
    .repeatForever()
    .start()
    ···

    相关文章

      网友评论

          本文标题:cc.tween 循环执行一组动作

          本文链接:https://www.haomeiwen.com/subject/ahuwqltx.html