colors.combine
From ComputerCraft Wiki
Function colors.combine | |
Combines a set of colors (or sets of colors) into a larger set. | |
Syntax | colors.combine(number color1, number color2, …) |
Returns | number the union of sets color1, color2, … |
Part of | ComputerCraft |
API | colors |
Examples
Example | |
Combine white, magenta, and light blue to yield 13 (the bitwise combination of the colors) | |
Code |
print(colors.combine(colors.white, colors.magenta, colours.lightBlue)) |
Output | 13 |