Returns the absolute value of f.
using UnityEngine;
public class ScriptExample : MonoBehaviour { void Start() { // Prints 10 Debug.Log(Mathf.Abs(-10.0f)); // Prints 0 Debug.Log(Mathf.Abs(0.0f)); // Prints 10 Debug.Log(Mathf.Abs(10.0f)); } }
Returns the absolute value of value.
using UnityEngine;
public class MathAbsExample : MonoBehaviour { void Start() { // prints 10 Debug.Log(Mathf.Abs(-10)); } }