NetworkTransformBase: Eliminate redundant code

This commit is contained in:
MrGadget 2024-04-10 07:45:44 -04:00
parent dffd53a1e6
commit 278324c1f1

View File

@ -332,8 +332,7 @@ protected virtual void OnTeleport(Vector3 destination)
// but server's last delta will have been reset, causing offsets. // but server's last delta will have been reset, causing offsets.
// //
// instead, simply clear snapshots. // instead, simply clear snapshots.
serverSnapshots.Clear(); ResetState();
clientSnapshots.Clear();
// TODO // TODO
// what if we still receive a snapshot from before the interpolation? // what if we still receive a snapshot from before the interpolation?
@ -358,8 +357,7 @@ protected virtual void OnTeleport(Vector3 destination, Quaternion rotation)
// but server's last delta will have been reset, causing offsets. // but server's last delta will have been reset, causing offsets.
// //
// instead, simply clear snapshots. // instead, simply clear snapshots.
serverSnapshots.Clear(); ResetState();
clientSnapshots.Clear();
// TODO // TODO
// what if we still receive a snapshot from before the interpolation? // what if we still receive a snapshot from before the interpolation?