From acc69d63be4e8d24fc986f88dd667b312f21bae6 Mon Sep 17 00:00:00 2001 From: Thomas Kolb Date: Sat, 19 Mar 2022 20:30:32 +0100 Subject: [PATCH] particles: faster cooldown of maximum amplitude --- src/animation.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/animation.rs b/src/animation.rs index 1302e3b..b639d86 100644 --- a/src/animation.rs +++ b/src/animation.rs @@ -138,7 +138,7 @@ pub mod particles use rand::Rng; - const COOLDOWN_FACTOR : f32 = 0.99995; + const COOLDOWN_FACTOR : f32 = 0.99980; const RGB_EXPONENT : f32 = 1.8; const W_EXPONENT : f32 = 2.2; const FADE_FACTOR : f32 = 0.98;