Files
ss14-wega/Content.Client/_Wega/TapeRecorder/TapeRecorderSystem.cs
T
Zekins3366 864ab2ea6b pew
2026-06-02 01:41:45 +03:00

25 lines
776 B
C#

using Content.Shared.TapeRecorder;
namespace Content.Client.TapeRecorder;
/// <summary>
/// Required for client side prediction stuff
/// </summary>
public sealed partial class TapeRecorderSystem : SharedTapeRecorderSystem
{
private TimeSpan _lastTickTime = TimeSpan.Zero;
public override void Update(float frameTime)
{
if (!Timing.IsFirstTimePredicted)
return;
//We need to know the exact time period that has passed since the last update to ensure the tape position is sync'd with the server
//Since the client can skip frames when lagging, we cannot use frameTime
var realTime = (float)(Timing.CurTime - _lastTickTime).TotalSeconds;
_lastTickTime = Timing.CurTime;
base.Update(realTime);
}
}