From 71eddd9ec2fd3a7ee8f700e228422c364d65b7f3 Mon Sep 17 00:00:00 2001 From: Klemen Plestenjak Date: Sat, 10 Feb 2024 23:17:32 +0100 Subject: [PATCH] Tweak fireball emitter color --- game/components.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/game/components.h b/game/components.h index 708f0ab..36ece5f 100644 --- a/game/components.h +++ b/game/components.h @@ -105,8 +105,8 @@ static ParticleEmitter GET_FIREBALL_EMITTER() { .data.emmitVariance = 1.0f, .data.emmitVarianceMin = 0.0f, .data.emmitVarianceMax = 1.0f, - .data.startColor = { 210, 10, 10, 210 }, - .data.endColor = { 110, 10, 10, 110 }, + .data.startColor = { 210, 40, 40, 210 }, + .data.endColor = { 110, 20, 20, 110 }, .data.minLifetime = 0.3f, .data.maxLifetime = 0.5f, .data.minStartSize = 4.0f,