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

説明

f の符号を返します。

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

using UnityEngine;

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