Ejemplo n.º 1
0
    public void NotifyPlayer(GameObject recipient, bool noLerp = false)
    {
        serverState.NoLerp = noLerp;
        var msg = PlayerMoveMessage.Send(recipient, gameObject, serverState);

        Logger.LogTraceFormat("Sent {0}", Category.Movement, msg);
    }
Ejemplo n.º 2
0
 public void NotifyPlayer(GameObject recipient, bool noLerp = false)
 {
     serverState.NoLerp = noLerp;
     PlayerMoveMessage.Send(recipient, gameObject, serverState);
 }
Ejemplo n.º 3
0
 public void NotifyPlayer(GameObject recipient)
 {
     PlayerMoveMessage.Send(recipient, gameObject, serverState);
 }