views:

921

answers:

2

I'm new to iPhone development and I'd really like to see a working example of this particular effect. Thanks in advance.

ParticleExplosion

+1  A: 

It's as simple as this:

ParticleSystem *emitter = [ParticleExplosion node]; [self addChild: emitter];

+1  A: 

If you open up Cocos2d source code in Xcode, you should be able to launch the ParticleTest example that contains all of particle effects. Alternatively, search youtube for cocos2d, there's a demo video that shows all of these effects.

EightyEight