I am creating a fire particle system on my football in my game and I am wondering where I should place the optimizing code (autoRemoveOnFinish). This is how I am doing it right now.
interface
CCParticleSystem *_fire;
@property (readwrite,retain) CCParticleSystem *fire;
Implementation
self.fire = [CCParticleSystemQuad particleWithFile:@"fire.plist"];
self.fire.position = cpv(self.contentSize.width * .5, self.contentSize.height * .5);
self.fire.positionType = kCCPositionTypeGrouped;
_fire.autoRemoveOnFinish = YES;
[self addChild:_fire z:0];
If this is right the way I am doing it why are the fps dropping to around 25. I am only allowing 5 footballs to be created on the screen at one time.