Returns the absolute value of f
.
#pragma strict public class ScriptExample extends MonoBehaviour { function Start() { // prints 10.5 Debug.Log(Mathf.Abs(-10.5f)); } }
using UnityEngine;
public class ScriptExample : MonoBehaviour { void Start() { // prints 10.5 Debug.Log(Mathf.Abs(-10.5f)); } }
Returns the absolute value of value
.
#pragma strict public class MathAbsExample extends MonoBehaviour { function Start() { // prints 10 Debug.Log(Mathf.Abs(-10)); } }
using UnityEngine;
public class MathAbsExample : MonoBehaviour { void Start() { // prints 10 Debug.Log(Mathf.Abs(-10)); } }