Color Module
Convenience constructors and conversions for Color.
Functions and values
| Function or value |
Description
|
Black (0, 0, 0, 255).
|
|
Blue (0, 0, 255, 255).
|
|
Green (0, 255, 0, 255).
|
|
Red (255, 0, 0, 255).
|
|
|
Transparent (0, 0, 0, 0).
|
White (255, 255, 255, 255).
|
|
Full Usage:
create r g b a
Parameters:
byte
g : byte
b : byte
a : byte
Returns: Color
Modifiers: inline |
|
Create an opaque color from RGB byte values (alpha = 255).
|
|
|
|
|
Mibo