Fix a serialization bug

This commit is contained in:
excitedneon 2017-05-09 19:06:50 +03:00
parent 419ac77a6a
commit 105022427b
1 changed files with 4 additions and 2 deletions

View File

@ -91,12 +91,14 @@ namespace Cyber.Entities {
/// <param name="reader"></param>
public override void Deserialize(NetworkReader reader) {
Vector3 ServerPosition = reader.ReadVector3();
Vector3 ServerMovementDirection = reader.ReadVector3();
Vector3 ServerRotation = reader.ReadVector3();
float Drift = (ServerPosition - transform.position).magnitude;
if (Drift > MovementSpeed * 0.5f) {
transform.position = ServerPosition;
MovementDirection = reader.ReadVector3();
MovementDirection = ServerMovementDirection;
}
Vector3 rot = reader.ReadVector3();
}
/// <summary>