Part_system_exists - hpgDesigns/hpgdesigns-dev.io GitHub Wiki

Description

Gets whether or not the given particle system exists and returns the result.

Parameters

Parameter Data Type Description
ind integer index of the particle system

Return Values

boolean: Returns whether the particle system exists.

Example Call

// demonstrates checking if a particle system exists
if (part_system_exists(sys)) {
  // system does exist
} else {
  // system does not exist
}

NOTOC