A 32bit color, commonly used by things like vertex buffers.
The functionality on this is purposely left minimal so we're encouraged to use the regular <see cref="T:Color" /> struct.
Hex |
String representation of the form "#RRGGBB[AA]".
|
RawInt |
Integer representation of the form 0xAABBGGRR as used by native code.
|
Rgb |
String representation in the form of <see href="https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/rgb">rgb</see>( r, g, b )
css function notation.
|
Rgba |
String representation in the form of <see href="https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/rgba">rgba</see>( r, g, b, a )
css function notation.
|
RgbaInt |
Integer representation of the form 0xRRGGBBAA.
|
RgbInt |
Integer representation of the form 0xRRGGBB.
|