Advertisement
9551

cRGB API

Jun 9th, 2021 (edited)
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.28 KB | None | 0 0
  1. -----cRGB------
  2. --by elektrobom1
  3. --a super simple API
  4. --for converting color API into
  5. --RGB 255x values
  6. local function conv(ins,mode)
  7.     if mode == nil then
  8.         mode = 255
  9.     end
  10.     local r,g,b = term.getPaletteColor(ins)
  11.     return r*mode,g*mode,b*mode
  12. end
  13.  
  14. return {conv = conv}
  15.    
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement