Cleaner wall sprites

This commit is contained in:
Anuken
2020-09-27 00:43:00 -04:00
parent f46180298f
commit ff84d72e20
17 changed files with 2 additions and 1 deletions

View File

@@ -35,6 +35,7 @@ public class Wall extends Block{
destructible = true;
group = BlockGroup.walls;
buildCostMultiplier = 5f;
canOverdrive = false;
}
@Override

View File

@@ -27,7 +27,6 @@ public class PowerNode extends PowerBlock{
protected static BuildPlan otherReq;
protected final ObjectSet<PowerGraph> graphs = new ObjectSet<>();
protected final Vec2 t1 = new Vec2(), t2 = new Vec2();
public @Load("laser") TextureRegion laser;
public @Load("laser-end") TextureRegion laserEnd;
@@ -42,6 +41,7 @@ public class PowerNode extends PowerBlock{
configurable = true;
consumesPower = false;
outputsPower = false;
canOverdrive = false;
config(Integer.class, (entity, value) -> {
PowerModule power = entity.power;