Method #
Particle nodes are nodes used in a particles system. This system starts with a Particle Root Node, and is built out with Emitter, Affector and Shader nodes, before finally being rendered to the camera with a Renderer node.
The Particle Root Node contains the particles themselves: their positions, velocities, colours and so on, in a pool waiting to be used. The number of particles in the pool is set by the Max Particle Count attribute on the root node. Particle Emitters take particles from the pool and bring them to life. Particle Affectors make them move; Particle Rendering Nodes control how particles are rendered to screen. When particles die they are returned to the pool until they are emitted again. It is possible that not all the particles in the pool are alive at any time. Even particles that are not currently alive in the pool carry some performance and memory overhead, so it is recommended that the maximum number of particles on the Particle Root node is limited to the amount actually needed by the emitters.
Multiple Particle Emitters may exist under one Particle Root node. Particle Affectors and Rendering nodes may be connected to the Particle Root directly, making them work on every particle under the root node; or they may be connected to individual Emitters, making them only affect the particles emitted by that Emitter.
Particles are generally hooked into the Root node, although they can be applied to any node - they will still appear in the scene as long as there is a path to a Root node.
Aside from the Particle Bounding Box, Particle Event and Particle Root, these nodes are split into 4 groups:
- Affectors, these affect the movement of the particles once they are emitted.
- Emitters, these emit particles based on different shapes or models.
- Rendering, render particles as different shapes or objects.
- Shading, change the colours of the particles based on various parameters.
Affectors
Particle Affector nodes modify particle motion.
Simulate Cloth with a Particle Mesh Deformer.
Allows Particles to collide with Meshes.
Applies curl noise velocities to Particles.
Allows particles to collide with depth camera data.
Applies an explosive force to particles at birth.
Allows particles to be affector by froces from a field.
Simulates flocking behaviour with particles.
Simulates fluid dynamics on Particles with FLIP simulations.
Applies a force to particles.
Attract or repel particles from an image.
Remove particles from inside or outside a zone.
Attract or repel particles from a mesh.
Apply forces to particles from mesh surfaces.
Uses points sources to disturb the particles.
Apply forces to particles from primitive shapes.
Allows particle collisions with simple 3D primitives.
Allows particles to interact with procedurals.
Allows particle collisions with active rigid bodies.
Apply changes to the scale of particles.
Apply a shockwave through particles.
Simulates fluid dynamics on Particles with an SPH simulation.
Attracts particles towards a spline.
Applies a spring simulation on particles.
Applies turbulence to particles.
Applies a constant velocity to particles.
Applies a rotational velocity to particles.
Emitters
Emitter nodes spawn particles that can be manipulated in a particles system.
Emit particles from a Field system.
Emit particles from an image.
Emit particles from a mesh.
Emit particles from a Point Cache.
Emit particles from a primitive shape.
Emit particles from a Procedural system.
Emit particles from objects within the screen space.
Emit particles that fill the volume of a mesh.
Emits particles from a spline.
Emits particles from other particles.
Eemits particles from feature points of a video.
Rendering
Rendering nodes visualise the particles by spawning images, meshes or trails.
Renders particles as a dot-matrix in screen space.
Renders particles as connected geometry and lines.
This node generates a 2D Gradient based on the positions and colours of active particles.
Renders lines between nearby particles.
Renders lines between pairs of particles.
[deprecated] Renders Geometry to the position of each particle.
Renders a each particle as a sprite.
Renders particles onto nearby Meshes.
Renders trails which follow the path of particles.
Renders particles as a density volume.
Shading
Shading nodes change the colour or position of the particles in various ways.
Shades particles based on their current properties.
Shades particles by their density.
Displaces a particle to a primitive shape.
Shades particles based on their distance from a point.
Displaces particles based on an image.
Shades particles based on an image.
shades particles based on a keyframe animated colour.
Shades particles over their life span.
Shades particles based on the area of effect from lights.
Shades particles using fractal noise.
Light particles using shadow volumes.
Light particles using voxel cone shading.
Nodes
Generates a bounding box from the bounds of a particle system.
Caches a particle system for potentially faster and repeatable results.
Modify particles using a dynamic per particle event.
The root node for a Particle system.