Объявление
public static float Abs(float f);Описание
Возвращает абсолютное значение f
.
using UnityEngine;
public class ScriptExample : MonoBehaviour
{
void Start()
{
// prints 10.5
Debug.Log(Mathf.Abs(-10.5f));
}
}
Объявление
public static int Abs(int value);Описание
Возвращает абсолютное значение value
.
using UnityEngine;
public class MathAbsExample : MonoBehaviour
{
void Start()
{
// prints 10
Debug.Log(Mathf.Abs(-10));
}
}