Returns the absolute value of f
.
// prints 10.5 print(Mathf.Abs(-10.5));
using UnityEngine;
public class ScriptExample : MonoBehaviour { void Start() { // prints 10.5 Debug.Log(Mathf.Abs(-10.5f)); } }
Returns the absolute value of value
.
// prints 10 print(Mathf.Abs(-10));
using UnityEngine;
public class MathAbsExample : MonoBehaviour { void Start() { // prints 10 Debug.Log(Mathf.Abs(-10)); } }
Did you find this page useful? Please give it a rating: