Returns the sign of f.
Return value is 1 when f is positive or zero, -1 when f is negative.
Debug.Log(Mathf.Sign(-10));Debug.Log(Mathf.Sign(10));
using UnityEngine;using System.Collections;public class example : MonoBehaviour { void Example() { Debug.Log(Mathf.Sign(-10)); Debug.Log(Mathf.Sign(10)); }}
import UnityEngineimport System.Collectionsclass example(MonoBehaviour): def Example(): Debug.Log(Mathf.Sign(-10)) Debug.Log(Mathf.Sign(10))