I’m using particle system in my code and having some problem.I simply want to change the color
of particle system to black .I’m confused what should be the value of RGB here or Black or grey Colour.
here is my code
particlesystem.addParticleInitializer(new ColorInitializer(0.0f, 0.0f, 0.0f));
particlesystem.addParticleModifier(new ColorModifier(1.0f, 0.0f, 1.0f,
0.0f, 1.0f, 0.0f, 0.0f, 1.0f));
I also attached image for particle system
https://i.stack.imgur.com/n5cYb.png

(FYI: Your modifier goes from transparent to opaque.)
You also have to make sure the blend mode is the one you want.