interface IRangedAnimation {
    count: RangeValue;
    decay: RangeValue;
    delay: RangeValue;
    enable: boolean;
    mode:
        | "auto"
        | "increase"
        | "decrease"
        | "random"
        | AnimationMode;
    speed: RangeValue;
    startValue:
        | "max"
        | "min"
        | "random"
        | StartValueType;
    sync: boolean;
}

Hierarchy (view full)

Properties

count: RangeValue

Animation loop count

decay: RangeValue

Speed animation decay

delay: RangeValue

Animation delay, first time only

enable: boolean

Enables/disables the animation

mode:
    | "auto"
    | "increase"
    | "decrease"
    | "random"
    | AnimationMode
speed: RangeValue

Speed animation

startValue:
    | "max"
    | "min"
    | "random"
    | StartValueType
sync: boolean

Enables the sync animations for the particles created at the same time pushed or emitter particles will be out of sync