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

描述

返回 f 的符号。

Returns a value of 1 when f is 0 or greater. Returns a value of -1 when f is negative.

using UnityEngine;

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