Changed turret outlines / Wall block tweaks

This commit is contained in:
Anuken
2019-06-06 21:18:54 -04:00
parent 895b46307a
commit aee800ab7a
34 changed files with 6966 additions and 6813 deletions

View File

@@ -70,7 +70,7 @@ public class Generators{
ImagePacker.generate("block-icons", () -> {
Image colors = new Image(content.blocks().size, 1);
Color outlineColor = new Color(0, 0, 0, 0.3f);
Color outlineColor = Color.valueOf("4d4e58");
for(Block block : content.blocks()){
TextureRegion[] regions = block.getGeneratedIcons();
@@ -95,7 +95,7 @@ public class Generators{
try{
Image last = null;
if(block.outlineIcon){
int radius = 3;
int radius = 4;
GenRegion region = (GenRegion)regions[regions.length - 1];
Image base = ImagePacker.get(region);
Image out = last = new Image(region.getWidth(), region.getHeight());