Logic-related color functions

This commit is contained in:
Anuken
2022-02-10 11:00:27 -05:00
parent 04c2bbc24d
commit a80e1d86a1
10 changed files with 100 additions and 19 deletions

View File

@@ -111,6 +111,7 @@ public class LAssembler{
g = Strings.parseInt(symbol, 16, 0, 3, 5),
b = Strings.parseInt(symbol, 16, 0, 5, 7),
a = symbol.length() == 9 ? Strings.parseInt(symbol, 16, 0, 7, 9) : 255;
return Color.toDoubleBits(r, g, b, a);
}