part_emitter_burst - hpgDesigns/hpgdesigns-dev.io GitHub Wiki
Emit the given number of particles of the given particle type from the given particle emitter in the given particle system.
Parameter | Data Type | Description |
---|---|---|
sys | integer | index of the particle system |
ind | integer | index of the particle emitter |
type | integer | index of the particle type to emit |
numb | integer | number of particles to emit |
void: This function does not return anything.
// demonstrates bursting particles from an emitters
part_emitter_burst(sys, emitter, type, 50);
NOTOC