Interface representing the JSON parameters for a burst.

interface BurstParametersJSON {
    count: number | FunctionJSON;
    cycle: number;
    interval: number;
    probability: number;
    time: number;
}

Properties

count: number | FunctionJSON

The count of particles to emit, can be a number or a function.

cycle: number

The cycle of the burst.

interval: number

The interval between bursts.

probability: number

The probability of the burst occurring.

time: number

The time of the burst.