From 9ea38614e2845d958af596a3c214c2c83f945282 Mon Sep 17 00:00:00 2001 From: Youngjoon Lee <5462944+youngjoon-lee@users.noreply.github.com> Date: Thu, 6 Feb 2025 13:50:18 +0900 Subject: [PATCH] no need to set min_temporal_delay to 1 --- simlib/blendnet-sims/src/node/blend/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simlib/blendnet-sims/src/node/blend/mod.rs b/simlib/blendnet-sims/src/node/blend/mod.rs index 28c3a34..7c4f292 100644 --- a/simlib/blendnet-sims/src/node/blend/mod.rs +++ b/simlib/blendnet-sims/src/node/blend/mod.rs @@ -178,7 +178,7 @@ impl BlendNode { ChaCha12Rng::from_rng(&mut rng_generator).unwrap(), temporal_update_time_receiver, ( - 1, + 0, settings.message_blend.temporal_processor.max_delay_seconds, ), ));