Part_destroyer_region - hpgDesigns/hpgdesigns-dev.io GitHub Wiki
Description
Sets the region of the given particle destroyer in the given particle system. This is the area in which particles are destroyed.
Parameters
Parameter | Data Type | Description |
---|---|---|
sys | integer | index of the particle system |
ind | integer | index of the particle destroyer |
xmin | double | minimum x coordinate |
xmax | double | maximum x coordinate |
ymin | double | minimum y coordinate |
ymax | double | maximum y coordinate |
shape | integer | shape of the region, particle system constant |
Return Values
void: This function does not return anything.
Example Call
// demonstrates setting the region of a particle destroyer
part_destroyer_region(sys, changer, x - 5, x + 5, y - 5, y + 5, ps_shape_ellipse);
NOTOC