-
Notifications
You must be signed in to change notification settings - Fork 0
Part_particles_create
hpgDesigns edited this page Aug 8, 2021
·
1 revision
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
This is number 1