返回 f
的绝对值。
using UnityEngine;
public class ScriptExample : MonoBehaviour
{
void Start()
{
// prints 10.5
Debug.Log(Mathf.Abs(-10.5f));
}
}
返回 value
的绝对值。
using UnityEngine;
public class MathAbsExample : MonoBehaviour
{
void Start()
{
// prints 10
Debug.Log(Mathf.Abs(-10));
}
}