This commit is contained in:
Anuken
2021-11-06 22:21:46 -04:00
parent da49328412
commit 09a934385e
5 changed files with 12 additions and 5 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 298 B

After

Width:  |  Height:  |  Size: 244 B

View File

@@ -1690,6 +1690,13 @@ public class Fx{
});
}),
conveyorPoof = new Effect(35, e -> {
color(Pal.plasticBurn, Color.gray, e.fin());
randLenVectors(e.id, 4, 3f + e.fin() * 4f, (x, y) -> {
Fill.circle(e.x + x, e.y + y, e.fout() * 1.11f);
});
}),
pulverize = new Effect(40, e -> {
randLenVectors(e.id, 5, 3f + e.fin() * 8f, (x, y) -> {
color(Pal.stoneGray);

View File

@@ -19,7 +19,7 @@ public class EnvRenderers{
Rand rand = new Rand();
Core.assets.load("sprites/rays.png", Texture.class).loaded = t -> {
((Texture)t).setFilter(TextureFilter.linear);
t.setFilter(TextureFilter.linear);
};
Color particleColor = Color.valueOf("a7c1fa");
@@ -98,7 +98,7 @@ public class EnvRenderers{
}
Draw.z(Layer.weather - 1);
Weather.drawNoiseLayers(tex, Color.scarlet, 1000f, 0.24f, 0.4f, 1f, 1f, 0f,
Weather.drawNoiseLayers(tex, Color.scarlet, 1000f, 0.23f, 0.4f, 1f, 1f, 0f,
4, -1.3f, 0.7f, 0.8f, 0.9f);
Draw.reset();
});

View File

@@ -210,7 +210,7 @@ public class ErekirPlanetGenerator extends PlanetGenerator{
}
//not allowed
state.rules.hiddenBuildItems.addAll(Items.copper, Items.titanium, Items.coal, Items.lead, Items.blastCompound, Items.pyratite, Items.sporePod, Items.metaglass);
state.rules.hiddenBuildItems.addAll(Items.copper, Items.titanium, Items.coal, Items.lead, Items.blastCompound, Items.pyratite, Items.sporePod, Items.metaglass, Items.plastanium);
//it is very hot
state.rules.attributes.set(Attribute.heat, 0.8f);

View File

@@ -37,8 +37,8 @@ public class StackConveyor extends Block implements Autotiler{
public boolean outputRouter = true;
/** (minimum) amount of loading docks needed to fill a line. */
public float recharge = 2f;
public Effect loadEffect = Fx.plasticburn;
public Effect unloadEffect = Fx.plasticburn;
public Effect loadEffect = Fx.conveyorPoof;
public Effect unloadEffect = Fx.conveyorPoof;
public StackConveyor(String name){
super(name);