返回 f 的符号。
f
当 f 为正数或零时,返回值为 1,当 f 为负数时,返回值为 -1。
using UnityEngine;public class Example : MonoBehaviour { void Start() { Debug.Log(Mathf.Sign(-10)); Debug.Log(Mathf.Sign(10)); } }