public static float Sign (float f);

描述

返回 f 的符号。

f 为正数或零时,返回值为 1,当 f 为负数时,返回值为 -1。

using UnityEngine;

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