Skip to content

Commit

Permalink
TESTING ONLY: Increase lifespan of smoke particles
Browse files Browse the repository at this point in the history
  • Loading branch information
Robyt3 committed Jul 16, 2023
1 parent ea7e53d commit 23544f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/game/client/components/effects.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ void CEffects::Explosion(vec2 Pos, float Alpha)
p.m_Spr = SPRITE_PART_SMOKE;
p.m_Pos = Pos;
p.m_Vel = random_direction() * (random_float(1.0f, 1.2f) * 1000.0f);
p.m_LifeSpan = random_float(0.5f, 0.9f);
p.m_LifeSpan = random_float(0.5f, 0.9f) * 100.0f;
p.m_StartSize = random_float(32.0f, 40.0f);
p.m_EndSize = 0;
p.m_Gravity = random_float(-800.0f);
Expand Down

0 comments on commit 23544f1

Please sign in to comment.