From 37c7d7c9ff82f55c2a20eef31a633033046e3eb3 Mon Sep 17 00:00:00 2001 From: Jan-Bulthuis Date: Tue, 25 Feb 2025 20:37:31 +0100 Subject: [PATCH] Adjusted rain --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 1e19ed7..82d1014 100644 --- a/src/main.rs +++ b/src/main.rs @@ -195,8 +195,8 @@ impl App { }) .with_bold_dim_effect(false) .with_rain_density(tui_rain::RainDensity::Relative { sparseness: 60 }) - .with_rain_speed(tui_rain::RainSpeed::Absolute { speed: 0.002 }) - .with_rain_speed_variance(10000.0) + .with_rain_speed(tui_rain::RainSpeed::Absolute { speed: 0.004 }) + .with_rain_speed_variance(4000.0) .with_tail_lifespan(Duration::from_millis(2500)) .with_color(Color::Green) .with_head_color(Color::White)