Fixed off-tinted cells
This commit is contained in:
Binary file not shown.
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.6 KiB |
@@ -464,7 +464,7 @@ public class Generators{
|
|||||||
Pixmap cell = baseCell.copy();
|
Pixmap cell = baseCell.copy();
|
||||||
|
|
||||||
//replace with 0xffd37fff : 0xdca463ff for sharded colors?
|
//replace with 0xffd37fff : 0xdca463ff for sharded colors?
|
||||||
cell.replace(in -> in == 0xffffffff ? 0xffa664ff : in == 0xdcc6c6ff ? 0xd06b53ff : 0);
|
cell.replace(in -> in == 0xffffffff ? 0xffa664ff : in == 0xdcc6c6ff || in == 0xdcc5c5ff ? 0xd06b53ff : 0);
|
||||||
|
|
||||||
image.draw(cell, image.width / 2 - cell.width / 2, image.height / 2 - cell.height / 2, true);
|
image.draw(cell, image.width / 2 - cell.width / 2, image.height / 2 - cell.height / 2, true);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user