Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have near about 255 image frames for background animation, 99 frames of enemy sprite and 125 frames of player sprite. All animations are running simultaneously on the screen. That is background animation is running and 4-5 enemies are on the screen are present at a time, also player is there at the same time.

Take a look at the code below,

CCAnimation *_enemyAnimation = [CCAnimation animationWithName:@"Enemy" delay:0.1f];
   for (int i = 1; i<99; i++) {
       [_enemyAnimation addFrameWithFilename:[NSString stringWithFormat:@"enemy %02d.jpg",i]];
   }

   id action1 = [CCAnimate actionWithAnimation: _enemyAnimation];
   [_enemySprite runAction:[CCRepeatForever actionWithAction: action1]];       
   [self schedule:@selector(BackToGameLogic:) interval:5.0];

This makes my game too slower and consumes memory about 65MB in the allocations.

How should I manage my animations so there will be improvement in speed and memory consumption will be reduced?.

Please suggest me the way.

Thanks.

share|improve this question

1 Answer

up vote 0 down vote accepted

Make your animations out of a sprite sheet. Sprite sheets only call the buffer once per sheet, so you get a marked improvement over individual jpgs per frame.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.