Mathf.Absstatic function Abs (f : float) : floatDescriptionReturns the absolute value of f.
JavaScripts
using UnityEngine;
using System.Collections; public class example : MonoBehaviour { void Awake() { print(Mathf.Abs(-10.5F)); } } import UnityEngine
import System.Collections class example(MonoBehaviour): def Awake(): print(Mathf.Abs(-10.5F)) static function Abs (value : int) : intDescriptionReturns the absolute value of value.
JavaScripts
using UnityEngine;
using System.Collections; public class example : MonoBehaviour { void Awake() { print(Mathf.Abs(-10)); } } import UnityEngine
import System.Collections class example(MonoBehaviour): def Awake(): print(Mathf.Abs(-10)) |
