SKAction sequence temporary delay (initial delay?)

老子叫甜甜 提交于 2019-12-10 14:07:29

问题


So in the game I'm building I want to repeat an action, but I want it to have an initial delay. So for example, the action would execute three seconds after the user started the game, but after it executes for the first time, there's no longer a three second delay. What can I do to solve this?

Thanks in advance!


回答1:


You could use an SKAction to make a delay, then put it at the beginning of your sequence.

Apple gives some sample code on sequences:

SKAction *moveUp = [SKAction moveByX:0 y:100.0 duration:1.0];
SKAction *zoom = [SKAction scaleTo:2.0 duration:0.25];
SKAction *wait = [SKAction waitForDuration: 0.5];
SKAction *fadeAway = [SKAction fadeOutWithDuration:0.25];
SKAction *removeNode = [SKAction removeFromParent];

SKAction *sequence = [SKAction sequence:@[moveUp, zoom, wait, fadeAway, removeNode]];
[node runAction: sequence];

You can use SKAction waitForDuration to make a delay.



来源:https://stackoverflow.com/questions/25534390/skaction-sequence-temporary-delay-initial-delay

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!