Returns the absolute value of f
.
// prints 10.5 print(Mathf.Abs(-10.5));
using UnityEngine; using System.Collections; public class Example : MonoBehaviour { void Example() { print(Mathf.Abs(-10.5F)); } }
import UnityEngine import System.Collections public class Example(MonoBehaviour): def Example() as void: print(Mathf.Abs(-10.5F))
Returns the absolute value of value
.
// prints 10 print(Mathf.Abs(-10));
using UnityEngine; using System.Collections; public class Example : MonoBehaviour { void Example() { print(Mathf.Abs(-10)); } }
import UnityEngine import System.Collections public class Example(MonoBehaviour): def Example() as void: print(Mathf.Abs(-10))