This commit is contained in:
mischa 2024-01-08 11:56:07 +01:00
parent a843232a86
commit 011ce5a331

View File

@ -250,7 +250,8 @@ void Update()
void FixedUpdate() void FixedUpdate()
{ {
// record client state every FixedUpdate // on clients we record the current state every FixedUpdate.
// this is cheap, and allows us to keep a dense history.
if (isClient) RecordState(); if (isClient) RecordState();
} }