Cocos Creator里cc.tween的stopAllActions() 和 repeatForever的用法
作者:互联网
this.useNowBtn.stopAllActions();
this.useNowBtn.setPosition(46 + t * 120, 360);
cc.tween(this.useNowBtn)
.repeatForever(
cc.tween()
.by(0.3, { position: cc.v2(0, -30) })
.by(0.3, { position: cc.v2(0, 30) })
)
.start();
注意stopAllActions()
只能停止挂在自己身上的Action,子节点的不受影响。
标签:Cocos,repeatForever,Creator,cc,0.3,useNowBtn,tween,stopAllActions 来源: https://blog.csdn.net/qq_36286039/article/details/121440200