From 27dcc42ce050c744c2630824798507b78293f2ef Mon Sep 17 00:00:00 2001 From: Klemen Plestenjak Date: Sat, 10 Feb 2024 16:08:25 +0100 Subject: [PATCH] Tweak fireball lifespan --- game/components.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/game/components.h b/game/components.h index d85b151..50904c4 100644 --- a/game/components.h +++ b/game/components.h @@ -107,8 +107,8 @@ static ParticleEmitter GET_FIREBALL_EMITTER() { .data.emmitVarianceMax = 1.0f, .data.startColor = { 210, 0, 0, 210 }, .data.endColor = { 110, 10, 10, 110 }, - .data.minLifetime = 1.0f, - .data.maxLifetime = 2.2f, + .data.minLifetime = 0.4f, + .data.maxLifetime = 0.8f, .data.minStartSize = 4.0f, .data.maxStartSize = 6.0f, .data.tileID = getParticleTypeTile(PARTICLE_CIRCLE),