Part_particles_create - hpgDesigns/hpgdesigns-dev.io GitHub Wiki
Description
Emits the given number of particles of the given particle type at the given location in the given particle system.
Parameters
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 |
Return Values
void: This function does not return anything.
Example Call
// demonstrates emitting particles
part_particles_create_color(sys, x, y, type, 50);
NOTOC