@newkrok/three-particles - v2.4.0
    Preparing search index...

    Type Alias BurstState

    Tracks the state of a burst emission event. Used internally to determine when bursts should fire and how many cycles remain.

    type BurstState = {
        cyclesExecuted: number;
        lastCycleTime: number;
        probabilityPassed: boolean;
    }
    Index

    Properties

    cyclesExecuted: number

    Number of cycles that have been executed so far

    lastCycleTime: number

    Time (in ms) when the last cycle was executed

    probabilityPassed: boolean

    Whether the probability check passed for this iteration