part_changer_region - hpgDesigns/hpgdesigns-dev.io GitHub Wiki
Sets the region of the given particle changer in the given particle system. This is the area in which particles are changed.
| Parameter | Data Type | Description |
|---|---|---|
| sys | integer | index of the particle system |
| ind | integer | index of the particle changer |
| 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 |
void: This function does not return anything.
// demonstrates setting the region of a particle changer
part_changer_region(sys, changer, x - 5, x + 5, y - 5, y + 5, ps_shape_rectangle);
NOTOC