From 0c447c6f266d367a3dafe06f9e85851907048e15 Mon Sep 17 00:00:00 2001 From: Adrian G L Date: Thu, 2 Oct 2025 12:29:45 +0200 Subject: [PATCH] perf: double animation start delay for helicopters to stagger timing --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index a180e48..4f66950 100644 --- a/src/main.rs +++ b/src/main.rs @@ -457,7 +457,7 @@ fn main() { // Animate and update multiple helicopters for (i, root) in heli_roots.iter_mut().enumerate() { - let time_offset = elapsed + (i as f32) * 0.5; + let time_offset = elapsed + (i as f32) * 1.0; let heading = simple_heading_animation(time_offset); { let mut pin = root.as_mut();