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).