I was wondering whether there are good tutorials available for creating a particle engine.

I would like to make fireballs , sparks (thunder) , ice cubes etc. I want the code to be portable and not to be limited into one OS such as Windows.

I would like to study particles in depth and make then look alike those being used in Kingdom Hearts . Take a look here http://www.youtube.com/watch?v=U4wcR1n8FLs

link|improve this question
1  
How about just googling "OpenGL particle"? It will give you tons of hits. – kotlinski Feb 2 '11 at 12:33
feedback

closed as not constructive by Kev May 9 at 1:32

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

3 Answers

http://nehe.gamedev.net/ was a pretty good reference for me back in the days.

link|improve this answer
feedback

You could use Bullet, which is an open-source physics engine that will do particles and a whole lot more... Bullet website

link|improve this answer
feedback

Here is an example of a purely shader-based particle emitter:

http://code.google.com/p/zero2d/source/browse/trunk/data/shaders/high/test2-particles.vs http://code.google.com/p/zero2d/source/browse/trunk/data/shaders/high/test2-particles.fs

You have to pass in a collection of starting positions and starting velocities. Overall acceleration and current time index are passed in via uniforms. This makes the particle emission "stateless" (you can slide the time index forward/back, and all the particles will adjust accordingly).

I know this isn't a tutorial per se, but it is a working code example. :)

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.