Я хотел бы знать, как я могу изменить задержку в CCAnimation?
_monstrAnim = [CCAnimation animationWithFrames:monstrAnimFrames delay:0.1f];
self.monstr = [CCSprite spriteWithSpriteFrameName: [NSString stringWithFormat:@"monstr_%d_1.png", currentLevel]];
self.walkAction = [CCRepeatForever actionWithAction:[CCAnimate actionWithAnimation:_monstrAnim restoreOriginalFrame:NO]];
[self.monstr runAction:self.walkAction];
[monstrSpriteSheet addChild:self.monstr z:1];
это работает нормально, но я должен изменить скорость FPS, и я делаю ...
[self.monstr stopAllActions];
[self.monstr runAction:self.walkAction];
[self.monstrAnim setDelay:1];
но ничего не произошло ...