part_type_exists

Checks to see if a given particle type exists.

Syntax:

part_type_exists(ind);


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


Returns: Boolean


Description

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


Example:

if !part_type_exists(global.p1)
   {
   global.p1 = part_type_create();
   }

The above code checks to see if the global variable "p1" stores the index of a particle type and if it does not it creates one.


Back: Particle Types
Next: part_type_create
© Copyright YoYo Games Ltd. 2018 All Rights Reserved