|
|
uint8_t | red |
| | The red color channel.
|
| |
|
uint8_t | green |
| | The green color channel.
|
| |
|
uint8_t | blue |
| | The blue color channel.
|
| |
|
uint8_t | alpha |
| | The alpha mask channel.
|
| |
|
|
static ColorRgba | BLACK = { 0, 0, 0, 255 } |
| | 'Black' RgbColor (0, 0, 0, 255)
|
| |
|
static ColorRgba | RED = { 255, 0, 0, 255 } |
| | 'Red' RgbColor (255, 0, 0, 255)
|
| |
|
static ColorRgba | GREEN = { 0, 255, 0, 255 } |
| | 'Green' RgbColor (0, 255, 0, 255)
|
| |
|
static ColorRgba | BLUE = { 0, 0, 255, 255 } |
| | 'Blue' RgbColor (0, 0, 255, 255)
|
| |
|
static ColorRgba | YELLOW = { 255, 255, 0, 255 } |
| | 'Yellow' RgbColor (255, 255, 0, 255)
|
| |
|
static ColorRgba | WHITE = { 255, 255, 255, 255 } |
| | 'White' RgbColor (255, 255, 255, 255
|
| |
The documentation for this struct was generated from the following files: