The particles emitter life options

interface IEmitterLife {
    count?: number;
    delay?: RangeValue;
    duration?: RangeValue;
    wait: boolean;
}

Implemented by

Properties

count?: number

The count of lives the particles emitter has. If <= 0 or not specified infinity will be the value. If the count is > 0 it will spawn only that number of times then it'll be destroyed and removed

delay?: RangeValue

The delay between any spawn, except first.

duration?: RangeValue

The duration of any emitter life. If <= 0 or not specified infinity will be the value.

wait: boolean

If enabled the first delay will be applied