#unity/日常积累 # [Mathf](https://docs.unity.cn/cn/current/ScriptReference/Mathf.html).Abs public static float Abs (float f); ## 描述 返回 `f` 的绝对值。 ``` cs using UnityEngine; public class ScriptExample : MonoBehaviour { void Start() { // prints 10.5 Debug.Log(Mathf.Abs(-10.5f)); } } ```