Mathf 2024年4月4日 | 阅读 #unity/日常积累 Mathf.Abs public static float Abs (float f); 描述 返回 f 的绝对值。 1 2 3 4 5 6 7 8 9 10 using UnityEngine; public class ScriptExample : MonoBehaviour { void Start() { // prints 10.5 Debug.Log(Mathf.Abs(-10.5f)); } } 流明 IComparable接口 IsPositiveInfinity Mathf Mathf SignedAngle Unity日常积累