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

    Type Alias RandomBetweenTwoConstants

    An object that defines a range for random number generation. Contains min and max properties.

    const randomDelay: RandomBetweenTwoConstants = { min: 0.5, max: 2 }; // Random delay between 0.5 and 2 seconds.
    
    type RandomBetweenTwoConstants = {
        max?: number;
        min?: number;
    }
    Index

    Properties

    Properties

    max?: number

    The maximum value for the random range.

    min?: number

    The minimum value for the random range.