I have implemented the following method in my Sprite Kit Game:
-(void) sprayWater{
[self runAction:[SKAction repeatActionForever:[SKAction animateWithTextures:self.runWasserFrames timePerFrame:0.05 resize:YES restore:YES]] withKey:@"water"];
}
What ist the most elegant way to set the minimum time of this action to 1,5 seconds? I tried several ways, but they did not work out for me so far.