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)); } }