let blinkAction = cc.blink(0.1, 1);
this.node.runAction(blinkAction);
在cc.tween如何使用
let blinkAction = cc.blink(0.1, 1);
this.node.runAction(blinkAction);
在cc.tween如何使用
可以折中方案
var tween= cc.tween()
.repeatForever(
.show()
.delay(0.1)
.hide()
.delay(0.1)
)
cc.tween(this.node)
.blink(0,1, 1)
.start();