Раунд для геев

This commit is contained in:
Igor Timofeev 2017-03-28 01:14:47 +03:00
parent a1448a6320
commit d319d2fcd9

View File

@ -107,7 +107,7 @@ local palette = {}
for r = 0, 5 do --Красный спектр
for g = 0, 7 do --Зелёный спектр
for b = 0, 4 do --Синий спектр
table.insert(palette, colorlib.RGBtoHEX(r * 0x33, g * 0x24, math.round(b / 4 * 0xFF))) --СИНИЙ, ПРЕКРАТИ
table.insert(palette, colorlib.RGBtoHEX(r * 0x33, g * 0x24, math.floor(b / 4 * 0xFF + 0.5))) --СИНИЙ, ПРЕКРАТИ
end
end
end