Color
Example
Creates a color and prints the components to the console.
PrintTable( Color( 1, 2, 3, 4 ) )
Output:
a = 4
b = 3
g = 2
r = 1
Example
Color variables can have individual channels set using the arguments.
Output:
a = 255
b = 0
g = 255
r = 255
Example
Transforms a color object to a string, then prints it.
Output:
255 0 0