Explorar el Código

removed buggy debug logs

DasGewehr hace 9 años
padre
commit
02655a89dc
Se han modificado 1 ficheros con 0 adiciones y 2 borrados
  1. 0 2
      game/Assets/Scripts/Player.cs

+ 0 - 2
game/Assets/Scripts/Player.cs

@@ -98,7 +98,6 @@ public class Player : MonoBehaviour
 
     private void UpdatePowerIndicator(float offset)
     {
-        Debug.Log("Power Offset: " + offset);
         if (offset < 0)
         {
             if (Mathf.Abs(offset) > 0)
@@ -194,7 +193,6 @@ public class Player : MonoBehaviour
         cameraOffset = Camera.main.transform.position - transform.position;
         lightIntensity = muzzleLight.intensity;
         var joystickNames = Input.GetJoystickNames();
-        Debug.Log(joystickNames[0]);
         useMouseLook = joystickNames.Length == 0 || string.IsNullOrEmpty(joystickNames[0]);
         if (useMouseLook)
         {