Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


inverseStartLifetimes

The lifetime of each particle, stored as 1.0f / lifetime.
Read time 1 minuteLast updated 12 days ago

Definition

public readonly NativeArray<float> inverseStartLifetimes { get; }

Remarks

There are more cases in the native code where we wish to divide by lifetime, rather than multiply by it. Therefore, storing the reciprocal allows us to perform efficent multiplies, rather than slow divides, in the majority of use-cases.