MutableColor4: {
    a: number;
    b: number;
    g: number;
    r: number;
}

For external usage, type with Color4, e.g. const blackColor: Color4 = Color4.Black(). For mutable typing, use Color4.Mutable, e.g. const redColor: Color4.Mutable = Color4.Red().

Type declaration

  • a: number
  • b: number
  • g: number
  • r: number