Skip to content

Commit

Permalink
. (#9676)
Browse files Browse the repository at this point in the history
  • Loading branch information
LixieWulf authored Mar 25, 2024
1 parent 631e8a4 commit e595627
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ public ContinuousFlameBulletType(){
lifetime = 16f;
hitColor = colors[1].cpy().a(1f);
lightColor = hitColor;
lightOpacity = 0.7f;
laserAbsorb = false;
ammoMultiplier = 1f;
pierceArmor = true;
Expand Down Expand Up @@ -87,7 +88,7 @@ public void draw(Bullet b){
}

Tmp.v1.trns(b.rotation(), realLength * 1.1f);
Drawf.light(b.x, b.y, b.x + Tmp.v1.x, b.y + Tmp.v1.y, lightStroke, lightColor, 0.7f);
Drawf.light(b.x, b.y, b.x + Tmp.v1.x, b.y + Tmp.v1.y, lightStroke, lightColor, lightOpacity);
Draw.reset();
}

Expand Down

0 comments on commit e595627

Please sign in to comment.