I create my emitter like this:

CCParticleSystem *emitter;
emitter = [[CCParticleGalaxy alloc] init];
emitter.texture = [[CCTextureCache sharedTextureCache] addImage:@"texture.png"];


emitter.position = ccp(100,100);


emitter.scale = 0.5;

emitter.autoRemoveOnFinish = YES; // this removes/deallocs the emitter after its animation
[self addChild:emitter];

It works, but the particles are way to "transparent", so they are barely visible on my background. How can I make them darker? Btw, the texture is a dark red png image and it works perfectly (darkly) with the other types of emitters (firework, explosion).

link|improve this question

feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.