Properties of the RadialProgressEffect effect

interface RadialProgressEffectProps {
    color?: number;
    offset?: number;
    progress?: number;
    radius?: number;
    range?: number;
    rounded?: boolean;
    width?: number;
}

Hierarchy (view full)

Properties

color?: number

Color of the border in 0xRRGGBBAA

0xffffffff
offset?: number

offset where the radial progress starts drawing.

0;
progress?: number

progress from 0 to 1 in floats

0.5;
radius?: number

radius from center to outer edge from 0 to 1 in floats;

1
range?: number

maximum range of the radial progress in radians

Math.PI * 2
rounded?: boolean

rounded ends of the progress bar;

false
width?: number

Width of the border in pixels

10