colors.combine

From ComputerCraft Wiki
Jump to: navigation, search


Grid Redstone.png  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

Grid paper.png  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