Thank you for your help. The sequence is SKActionas follows:
SKAction *seq = [SKAction sequence:@[wait, throwAnim, run]];
SKAction *req = [SKAction repeatActionForever:seq];
Is there a way to make the wait a random duration, or can it be controlled during repetition forever?
source
share