V0.2.1 : Updated Goo particle effects again, small tweak

This commit is contained in:
Evan Debenham
2014-10-04 02:53:17 -04:00
parent d3af7bb854
commit 6b72f83ccd
3 changed files with 3 additions and 3 deletions
@@ -20,6 +20,6 @@ public class GooWarnParticle extends FlameParticle {
float p = left / lifespan;
color( 0x000000 );
am = (1 - p*0.9f) + 0.1f;
am = p > 0.5f ? (1.2f - p*0.8f) : (p*3 - 0.7f);
}
}