second attempt, this time with my own 10K particles code and OpenGL :)
i'm getting closer :P
DL: Download GLTests.zip -> (hit Space to trigger motion) i made it the way it is by accidentally adding 3 lines of code :P the colors were easy :)
some code:
Code:
//able to control color of each particle
glColor3ub(myParticles[i].redc,myParticles[i].greenc,myParticles[i].bluec);
//draw the pixel particle
glVertex2f(myParticles[i].px, yyget(myParticles[i].py));
actually there is not much of a code, the rest is just OGL stuff and 30-40 lines for color and position, all looks so easy :P