I have a CAEmitterCell working but I want the particles to slow down and stop. It seems if I had access to all the particles then I could just reduce their velocity and/or acceleration to 0 and they would stop moving.
I tried something like this:
NSArray *cells = [_layerEmitter emitterCells];
for (CAEmitterCell* cell in cells) {
...
but that didn't work, since my layerEmitter has only one emitterCell, I don't need the emitterCell, but the particles that it has already created.
I'm not seeing this in the docs which makes me believe I had a conceptual problem. I appreciate any help.