Introduction to particle systems
All the graphics and effects we have created so far use static meshes, 3D models that can't be skewed, bent, or deformed in any way. Fluids such as fire and smoke clearly can't be represented using this kind of mesh. However, we can simulate these effects with a combination of static meshes, and this is where particle systems are useful.
Particle systems are objects that emit and animate lots of particles or billboards, which are simple quad meshes that face the camera. Each particle is a static mesh, but rendering, animating, and combining lots of them can generate the illusion of a fluid. In the following figure, on the left, you can see a smoke effect using particle systems, while on the right, you can see the Wireframe view of the same particles. There, you can see the quads that create the illusion of smoke, which is done by applying a smoke texture to each of the particles and animating them so that they spawn at the bottom and move...