Hi,
1. how can i deactivate the tint function in a particlesystem... if i create a ParticleRain... the Raindrops png file is tinted to a blue color.... how can i use the colors from the png file?
2. is it possible to size the particles height and width seperatly? ...
3. why is the max size 64 pixel?
//edit -> Answer for question 1
ccColor4F startColor = {1.0f, 1.0f, 1.0f, 1.0f};
emitter.startColor = startColor;
ccColor4F startColorVar = {0, 0, 0, 0};
emitter.startColorVar = startColorVar;
ccColor4F endColor = {1.0f, 1.0f, 1.0f, 1.0f};
emitter.endColor = endColor;
ccColor4F endColorVar = {0, 0, 0, 0};
emitter.endColorVar = endColorVar;