part_changer_exists - hpgDesigns/hpgdesigns-dev.io GitHub Wiki
Gets whether or not the given particle changer exists in the given particle system and returns the result.
Parameter | Data Type | Description |
---|---|---|
sys | integer | index of the particle system |
ind | integer | index of the particle changer |
boolean: Returns whether the particle changer exists in the particle system.
// demonstrates checking if a particle changer exists
if (part_changer_exists(sys, attr)) {
// changer does exist
} else {
// changer does not exist
}
NOTOC