Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --CLamp lib by elektrobom1
- local function rgb(R, G, B)
- local R = math.min(R,31)
- local G = math.min(G,31)
- local B = math.min(B,31)
- return B + G * 32 + R * 1024
- end
- return {rgb = rgb}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement