|
| | Color (uint packedValue) |
| | Color (byte r, byte g, byte b) |
| | Color (byte r, byte g, byte b, byte a) |
| | Color (int r, int g, int b, int a) |
| | Color (int r, int g, int b) |
| | Color (float r, float g, float b, float a) |
| | Color (float r, float g, float b) |
| | Color (Color rgb, byte a) |
| | Color (Color rgb, int a) |
| | Color (Color rgb, float a) |
| | Color (Vector4 rgba) |
| | Color (Vector3 rgb) |
| override int | GetHashCode () |
| override bool | Equals (object obj) |
| override string | ToString () |
| bool | Equals (Color other) |
|
| static implicit | operator Color ((byte R, byte G, byte B) v) |
| static implicit | operator Color ((byte R, byte G, byte B, byte A) v) |
| static implicit | operator Color ((int R, int G, int B) v) |
| static implicit | operator Color ((int R, int G, int B, int A) v) |
| static implicit | operator Color ((float R, float G, float B, float A) v) |
| static Color | Lerp (Color c1, Color c2, float f) |
| static Color | LerpNotSaturated (Color c1, Color c2, float f) |
| static Color | PremultiplyAlpha (Color c) |
| static Vector4 | PremultiplyAlpha (Vector4 c) |
| static Color | MultiplyAlphaOnly (Color c, float s) |
| static Color | MultiplyAlphaOnlyNotSaturated (Color c, float s) |
| static Color | MultiplyColorOnly (Color c, float s) |
| static Color | MultiplyColorOnlyNotSaturated (Color c, float s) |
| static Color | MultiplyColorOnlyNotSaturated (Color c, Vector3 s) |
| static Color | MultiplyNotSaturated (Color c, float s) |
| static Color | MultiplyNotSaturated (Color c, Vector4 s) |
| static Vector3 | RgbToHsv (Vector3 rgb) |
| static Vector3 | HsvToRgb (Vector3 hsv) |
| static bool | operator== (Color c1, Color c2) |
| static bool | operator!= (Color c1, Color c2) |
| static Color | operator* (Color c, float s) |
| static Color | operator* (float s, Color c) |
| static Color | operator/ (Color c, float s) |
| static Color | operator* (Color c, Vector4 s) |
| static Color | operator* (Vector4 s, Color c) |
| static Color | operator+ (Color c1, Color c2) |
| static Color | operator- (Color c1, Color c2) |
| static Color | operator* (Color c1, Color c2) |
|
| static Color | Transparent = default |
| static Color | Black = new(0, 0, 0, 255) |
| static Color | DarkGray = new(64, 64, 64, 255) |
| static Color | Gray = new(128, 128, 128, 255) |
| static Color | LightGray = new(192, 192, 192, 255) |
| static Color | White = new(255, 255, 255, 255) |
| static Color | Red = new(255, 0, 0, 255) |
| static Color | Green = new(0, 255, 0, 255) |
| static Color | Yellow = new(255, 255, 0, 255) |
| static Color | Blue = new(0, 0, 255, 255) |
| static Color | Magenta = new(255, 0, 255, 255) |
| static Color | Cyan = new(0, 255, 255, 255) |
| static Color | DarkRed = new(128, 0, 0, 255) |
| static Color | DarkGreen = new(0, 128, 0, 255) |
| static Color | DarkYellow = new(128, 128, 0, 255) |
| static Color | DarkBlue = new(0, 0, 128, 255) |
| static Color | DarkMagenta = new(128, 0, 128, 255) |
| static Color | DarkCyan = new(0, 128, 128, 255) |
| static Color | LightRed = new(255, 128, 128, 255) |
| static Color | LightGreen = new(128, 255, 128, 255) |
| static Color | LightYellow = new(255, 255, 128, 255) |
| static Color | LightBlue = new(128, 128, 255, 255) |
| static Color | LightMagenta = new(255, 128, 255, 255) |
| static Color | LightCyan = new(128, 255, 255, 255) |
| static Color | Orange = new(255, 128, 0, 255) |
| static Color | Pink = new(255, 0, 128, 255) |
| static Color | Chartreuse = new(128, 255, 0, 255) |
| static Color | Violet = new(128, 0, 255, 255) |
| static Color | MintGreen = new(0, 255, 128, 255) |
| static Color | SkyBlue = new(0, 128, 255, 255) |
| static Color | Brown = new(128, 64, 0, 255) |
| static Color | Purple = new(128, 0, 64, 255) |
| static Color | Olive = new(64, 128, 0, 255) |
| static Color | Indigo = new(64, 0, 128, 255) |
| static Color | MutedGreen = new(0, 128, 64, 255) |
| static Color | InkBlue = new(0, 64, 128, 255) |