Player stutter fix

This commit is contained in:
brausjonas
2022-05-13 16:41:00 +02:00
parent 07861676d6
commit fb04675716
6 changed files with 69 additions and 36 deletions
@@ -232,5 +232,17 @@ public class Player : MonoBehaviour
return false;
}
}
public class PlayerUpdateData
{
public PlayerUpdateData(byte id, Vector3 position)
{
this.id = id;
this.position = position;
}
public byte id;
public Vector3 position;
}
}