CrawlComp progress

This commit is contained in:
Anuken
2021-08-21 15:32:25 -04:00
parent a6c8b3a2bd
commit 7afc6d3631
11 changed files with 129 additions and 18 deletions

View File

@@ -313,6 +313,13 @@ public class Fx{
Lines.poly(e.x, e.y, 4, 13f * e.fout());
}).layer(Layer.debris),
crawlDust = new Effect(30, e -> {
color(Tmp.c1.set(e.color).mul(1.1f));
randLenVectors(e.id, 2, 10f * e.finpow(), (x, y) -> {
Fill.circle(e.x + x, e.y + y, e.fslope() * 3f + 0.3f);
});
}).layer(Layer.debris),
landShock = new Effect(12, e -> {
color(Pal.lancerLaser);
stroke(e.fout() * 3f);

View File

@@ -2412,10 +2412,16 @@ public class UnitTypes implements ContentList{
//region neoplasm
scuttler = new UnitType("scuttler"){{
hitSize = 30f;
hitSize = 44f;
omniMovement = false;
rotateSpeed = 1f;
rotateSpeed = 2f;
drawCell = false;
segments = 4;
drawBody = false;
segmentScl = 4f;
segmentPhase = 5f;
speed = 1f;
}};
//endregion