Properly rounded sprites for 'source/sorter' blocks

This commit is contained in:
Anuken
2019-05-29 23:42:03 -04:00
parent 1a0b22ef15
commit 75b8f5e543
14 changed files with 1407 additions and 1393 deletions

View File

@@ -57,7 +57,7 @@ public class Sorter extends Block{
if(entity.sortItem == null) return;
Draw.color(entity.sortItem.color);
Draw.rect("blank", tile.worldx(), tile.worldy(), 4f, 4f);
Draw.rect("center", tile.worldx(), tile.worldy());
Draw.color();
}

View File

@@ -62,7 +62,7 @@ public class ItemSource extends Block{
if(entity.outputItem == null) return;
Draw.color(entity.outputItem.color);
Draw.rect("blank", tile.worldx(), tile.worldy(), 4f, 4f);
Draw.rect("center", tile.worldx(), tile.worldy());
Draw.color();
}

View File

@@ -66,7 +66,7 @@ public class LiquidSource extends Block{
if(entity.source != null){
Draw.color(entity.source.color);
Draw.rect("blank", tile.worldx(), tile.worldy(), 4f, 4f);
Draw.rect("center", tile.worldx(), tile.worldy());
Draw.color();
}
}