Version: 2017.1
public static float Sign (float f);

説明

f の符号を返します。

f が正か 0 の場合は 1 を、負の場合は -1 を返します。

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Example() { Debug.Log(Mathf.Sign(-10)); Debug.Log(Mathf.Sign(10)); } }