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.
JavaScripts
using UnityEngine;
using System.Collections; public class example : MonoBehaviour { void Awake() { Debug.Log(Mathf.Sign(-10)); Debug.Log(Mathf.Sign(10)); } } import UnityEngine
import System.Collections class example(MonoBehaviour): def Awake(): Debug.Log(Mathf.Sign(-10)) Debug.Log(Mathf.Sign(10)) |
