Color
A container for RGB values of a color
Properties
| Type | Property |
|---|---|
| float | r |
| float | g |
| float | b |
Constructors
| Return | Constructor | Value |
|---|---|---|
| Color | Color.new(r, g, b) | {r = r, g = g, b = b} |
Constants
| Type | Name | Value |
|---|---|---|
| Color | white | { r = 1, g = 1, b = 1 } |
| Color | black | { r = 0, g = 0, b = 0 } |