remove Debug.Log messages

This commit is contained in:
jparent 2015-08-22 05:10:53 -04:00
parent c4812ce7a2
commit 96d0138f3a

View File

@ -34,17 +34,12 @@ public class AutoTarget : MonoBehaviour {
float dot = Vector3.Dot(targetDirection, lookingAngle);
float angle = Mathf.Acos(dot) * Mathf.Rad2Deg;
if (angle < minAngle) {
minAngle = angle;
closest = t;
}
Debug.Log("angle: " + angle);
}
}
Debug.Log("min angle:" + minAngle);
return closest;
}