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 creator3D 物理小游戏《球球跳跃》源码H5+安卓+IOS三端源码


下一篇:cocos camera targetTexture应用之小地图与残影实现