Split particle node
Splits (emits) particles from existing particles.
At each frame, each particle in the input (or in the group specified by the Source Group parameter) will birth a random number of new particles between the minimum and maximum specified in the Birth Probability parameter (on the Birth tab). You can make this a true split by killing the original particle (turn on Kill Original Particle on the Birth tab).
The parameters on the Attributes tab let you control which attributes the new particles inherit from the birthing particle, as well as set the velocity of the newly split particles. If you leave the Initial velocity as Use inherited velocity, the new particles will be traveling in the exact same direction and speed as the original, making them indistinguishable in the viewer unless you group them and apply different rendering to the group.
More commonly, you will set Initial Velocity to Add to inherited velocity (to define the particle’s new velocity relative to the birthing particle) or Set initial velocity (to set the particle’s new velocity without reference to the birthing particle). The Velocity parameter lets you set the new particle’s velocity, with a random Variance added for each particle (set Variance to 0, 0, 0 for no random variance.
This node is useful for increasing the number of particles as time goes on. It is also useful in combination with groups to have a group of “main” particles that throw off differently-rendered “secondary” particles (by splitting them into a different group). For example, an explosion effect where white-hot central exploding parts throw off orange and red colored secondary parts.
Another classic example of a split is fireworks: use the Activation parameter to only activate the split at a certain frame, split off the “explosion” points from the “rocket” point, and kill the original “rocket” point.
Note | The original particles will split new particles at every frame. This can quickly lead to a very large number of particles if the maximum birth probability value is high or if the Life Expectancy of the new particles is long. |
Using Split
Create a
particle system.Click
Split on the Create Particles tab. The particle system will attach itself to the particle system you have selected.
Click
play on the playbar to see the particles.

Parameters
Activation | Turns this node on and off. The operator is only active if this value is greater than 0. This is useful to control the effect of this node with an expression. |
Source Group | Only affect a group of points (created with, for example, a Group POP or Collision POP) out of all the points in the input. |
Source
Emission Type | Where to emit the new particles from. Except for “From particle”, these options are the same as in the Source POP's Emission Type parameter, though where the Source POP emits particles from a piece of referenced geometry, these options emit the particles from the particle’s instanced geometry.
| ||||||||||||||||||||||
Density Threshold | See the Source POP’s Density Threshold parameter. | ||||||||||||||||||||||
Density Minimum | See the Source POP’s Density Minimum parameter. | ||||||||||||||||||||||
Use Metaball Density | See the Source POP’s Use metaball density parameter. |
Birth
Birth Probability | How many particles to emit from each source point. This not a probability in the sense of “x chances out of y.” The first number is the minimum number of particles that might be born each frame, and the second number is the maximum number. For example, values |
Birth Group | Name of a group to put the new points into. |
Preserve Group | If the Birth group already exists, append the new particles to the group instead of replacing its contents. |
Life Expectancy | How long the particle will live (in seconds). |
Life Variance | Particles will live the number of seconds in Life expectancy, plus or minus this number of seconds. Use 0 for no variance. |
Kill Original Particle | Kill the source particle after splitting off new particles. |
Attributes
Inherit Attributes | A list of names/patterns of attributes to inherit from the source geometry. | ||||||
Initial Velocity | How to set the initial velocity of the emitted particles.
| ||||||
Inherit Velocity | (When Initial velocity is Use inherited velocity or Add to inherited velocity) The proportion of the inherited velocity to use. Use | ||||||
Velocity | Set or add to velocity attribute. | ||||||
Variance | Variance to velocity set above. The node will add +/- from 0 to this number along each axis to the Velocity parameter. | ||||||
Ellipsoid Distribution | By default, the variance (if any) is distributed in a box, the size of which is determined by the Variance parameter. When this option is on, the variance is distributed in an ellipsoid instead. | ||||||
Use as Origin | Controls what Houdini sets as the value of a particle’s origin attribute (the identity of the geometry that emitted the particle). This lets you distinguish the origin of a particle later.
| ||||||
Origin Index | Number to use as the origin of emitted particles. This lets you distinguish different origins. |
Locals
These variables refer to the source particle’s properties. They do not refer to the properties of the instanced geometry when birthing from instanced geometry.
| BBX BBY BBZ | The point’s relative position in the bounding box. |
| CA | Point or vertex alpha value. |
| CR CG CB | Diffuse point or vertex color. |
| DIST | Distance from particle to last collision. |
| DRAG | Point drag. |
| ITER | Processing iteration number. |
| MAPU MAPV MAPW | Texture coordinates. |
| MASS | Point mass. |
| NPART | Number of particles. |
| NPT | Total number of points. |
| NPRIM | Total number of primitives. |
| NGRP | Total number of points in source group. |
| NX NY NZ | Normal vector. |
| P | Source point. |
| PSCALE | Particle Scale. |
| SCALEX SCALEY SCALEZ | Non-uniform scale. |
| SPEED | Absolute speed of particle. |
| SPRINGK | Elasticity of a point. |
| TENSION | Spring tension. |
| TIMEINC | Time increment. |
| TX TY TZ | Point position. |
| UPX UPY UPZ | Up vector. |
| U V | Surface UV values. |
| VX VY VZ | Velocity direction. |
| WEIGHT | Point spline weight. |
Examples
The following examples are specifically designed to demonstrate this node:
FireworksSetup
$HFS/mozilla/documents/examples/nodes/pop/split/FireworksSetup.cmd
SplitSelf
$HFS/mozilla/documents/examples/nodes/pop/split/SplitSelf.cmd
The following examples use this node:
BounceSplit
$HFS/mozilla/documents/examples/nodes/pop/collision/BounceSplit.cmd
InstanceCoils
$HFS/mozilla/documents/examples/nodes/pop/instance/InstanceCoils.cmd
Meteor
$HFS/mozilla/documents/examples/nodes/pop/collision/Meteor.cmd
