From b28fa252798c1498e7bc085040cab5dace43c489 Mon Sep 17 00:00:00 2001 From: Quaternions Date: Thu, 16 Jan 2025 00:36:02 -0800 Subject: [PATCH] comment about determinism --- strafe-client/src/session.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/strafe-client/src/session.rs b/strafe-client/src/session.rs index 47b3ba7..2f94a93 100644 --- a/strafe-client/src/session.rs +++ b/strafe-client/src/session.rs @@ -284,6 +284,7 @@ impl InstructionConsumer> for Session{ run_mouse_interpolator_instruction!(MouseInterpolatorInstruction::Idle); // this just refreshes the replays for replay in self.replays.values_mut(){ + // TODO: filter idles from recording, inject new idles in real time replay.advance(ins.time); } }