Exemple #1
0
 /// <summary>Processes player input and moves the player.</summary>
 public void Update()
 {
     ServerSend.PlayerTransform(this);
     ServerSend.CharacterMovement(this);
     if (isUsingWeapon)
     {
         ServerSend.UpdateWeaponRotation(this);
     }
     ServerSend.AnimatorMovement(this);
 }