Particles Orbit

key option type example notes
animation.enable boolean true / false
animation.speed number 0 describes the rate of travel of a particle progressing along the
curve defined by other values in this property
color color object This color object is the same described here {@links IColor}
enable object true / false
radius number 0
rotation.value number / object 50 / { min: 10, max: 50 }
opacity number
width number
interface IOrbit {
    animation: IAnimation;
    color?: string | IRangeColor;
    enable: boolean;
    opacity: RangeValue;
    radius?: RangeValue;
    rotation: IValueWithRandom;
    width: RangeValue;
}

Hierarchy

Implemented by

Properties

animation: IAnimation
color?: string | IRangeColor
enable: boolean

Enables/disables the animation

opacity: RangeValue
radius?: RangeValue
width: RangeValue