f
の符号を返します。
f
が正か 0 の場合は 1 を、負の場合は -1 を返します。
Debug.Log(Mathf.Sign(-10)); Debug.Log(Mathf.Sign(10));
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void Example() { Debug.Log(Mathf.Sign(-10)); Debug.Log(Mathf.Sign(10)); } }