part_particles_create - hpgDesigns/hpgdesigns-dev.io GitHub Wiki
Emits the given number of particles of the given particle type at the given location in the given particle system.
Parameter | Data Type | Description |
---|---|---|
ind | integer | index of the particle system |
x | double | x coordinate of the location to emit particles |
y | double | y coordinate |
type | integer | index of the particle type to emit |
numb | integer | number of particles to emit |
void: This function does not return anything.
// demonstrates emitting particles
part_particles_create_color(sys, x, y, type, 50);
NOTOC