Interface IMutableColorRgba

Mutable RGBA color interface. Represents a color with red, green, blue, and alpha components. All components can be modified after creation.

interface IMutableColorRgba {
    a: number;
    b: number;
    g: number;
    r: number;
}

Implemented by

Properties

a b g r

Properties

a: number

Alpha (transparency) component of the color (0.0 to 1.0) - mutable

b: number

Blue component of the color (0.0 to 1.0) - mutable

g: number

Green component of the color (0.0 to 1.0) - mutable

r: number

Red component of the color (0.0 to 1.0) - mutable