New scaling pipelines

This commit is contained in:
Anuken
2018-11-12 19:03:23 -05:00
parent ab9835b896
commit 7baf42b138
1160 changed files with 2664 additions and 2791 deletions

View File

@@ -34,16 +34,6 @@ public class Generators {
read.draw(image);
Image base = ImageContext.get("block-" + block.size);
Image top = ImageContext.get("block-" + block.size + "-top");
for (int x = 0; x < base.width(); x++) {
for (int y = 0; y < base.height(); y++) {
Color result = top.getColor(x, y);
if(result.a > 0.01f){
base.draw(x, y, result);
}
}
}
base.draw(image);