part_system_exists

Checks to see whether a particle system exists.

Syntax:

part_system_exists(ind);


Argument Description
ind The index of the particle system to check for.


Returns: Boolean


Description

With this function you can check to see if the given particle system indexed exists in the game or not. Note that if the variable being checked is an uninitialised variable (that a particle system would otherwise have its index assigned to) this will throw an error.


Example:

if !part_system_exists(global.Sname)
   {
   global.Sname = part_system_create();
   }

the above code checks to see if the particle system referenced in the global variable exists and if it does not it is created.


Back: Particle Systems
Next: part_system_create
© Copyright YoYo Games Ltd. 2018 All Rights Reserved