Mathf.Signstatic function Sign (f : float) : floatDescriptionReturns the sign of f. Return value is 1 when f is positive or zero, -1 when f is negative.
JavaScript
Debug.Log(Mathf.Sign(-10)); using UnityEngine; import UnityEngine |
