The self
namespace contains all particle-related functions and variables.
Return type | Description |
float | self.lifeRatio Normalized age of the particle, in the [0, 1] range.When the particle is spawned, the lifeRatio is 0.0 .When the particle dies, the lifeRatio is 1.0 . |
float | self.invLife Inverse life of the particle: life = 1.0f / self.invLife .The simulation internally stores the inverse life for performance reasons, and this is kept explicit with self.invLife , which will produce an efficient direct memory read. If you need the life instead of inverse life, you can use rcp(self.invLife) or 1 / self.invLife . |
void | self.kill(bool condition) if condition is true , kills the particle this frame. |
bool | self.wasKilled() returns true if the current frame is the particle’s death frame, and the particle was killed via an explicit self.kill() .returns false otherwise, including if the particle died of natural cause. |
bool | self.readKillBit() Advanced usage. Reads the internal simulation kill-bit for this particle. If true is returned, it does not necessarily mean self.isDead() or self.wasKilled() are true this frame. |
bool | self.isDead() returns true if the current frame is the particle’s death frame, otherwise returns false |
bool | self.isDeterministic() Returns true if the simulation for this particle is running in deterministic mode, false otherwise. |