Part_emitter_burst - hpgDesigns/hpgdesigns-dev.io GitHub Wiki
Description
Emit the given number of particles of the given particle type from the given particle emitter in the given particle system.
Parameters
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 |
Return Values
void: This function does not return anything.
Example Call
// demonstrates bursting particles from an emitters
part_emitter_burst(sys, emitter, type, 50);
NOTOC