Misc turret sprite cleanup
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 364 B After Width: | Height: | Size: 328 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 842 B After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 4.3 KiB |
Before Width: | Height: | Size: 631 B After Width: | Height: | Size: 777 B |
@ -3074,8 +3074,8 @@ public class Blocks{
|
||||
|
||||
consumes.liquids(LiquidStack.with(Liquids.hydrogen, 1f / 60f));
|
||||
|
||||
range = 360f;
|
||||
size = 3;
|
||||
range = 390f;
|
||||
size = 4;
|
||||
}};
|
||||
|
||||
//endregion
|
||||
|
@ -1732,11 +1732,14 @@ public class Fx{
|
||||
}),
|
||||
|
||||
lancerLaserChargeBegin = new Effect(60f, e -> {
|
||||
float margin = 1f - Mathf.curve(e.fin(), 0.9f);
|
||||
float fin = Math.min(margin, e.fin());
|
||||
|
||||
color(Pal.lancerLaser);
|
||||
Fill.circle(e.x, e.y, e.fin() * 3f);
|
||||
Fill.circle(e.x, e.y, fin * 3f);
|
||||
|
||||
color();
|
||||
Fill.circle(e.x, e.y, e.fin() * 2f);
|
||||
Fill.circle(e.x, e.y, fin * 2f);
|
||||
}),
|
||||
|
||||
lightningCharge = new Effect(38f, e -> {
|
||||
|