When a CCSprite child of CCSpriteBatchNode performs a CCAnimation, are the frames of that animation also batch drawn just like the main image of CCSprite? If not, is there a way to have all the frames of many animations of many batch node children all be batch drawn together?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

The CCAnimation simply changes the sprite frame of the sprite. In essence it simply changes which part of the (much bigger) texture atlas the sprite is displaying. So animations are properly sprite-batched because you're just changing which part of the texture the sprite is displaying.

link|improve this answer
Is it safe to say then that your animation frames must be part of the same texture as the CCBatchNode or you will throw errors? – andrewx Feb 22 at 1:01
feedback

Your Answer

 
or
required, but never shown

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