Mathf.Abs 绝对值

static function Abs (f : float) : float

Description描述

Returns the absolute value of f.

计算并返回指定参数 f 绝对值。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public void Awake() {
		print(Mathf.Abs(-10.5F));
	}
}
// prints 10.5
print(Mathf.Abs(-10.5));

•static function Abs (value : int) : int

Description描述

Returns the absolute value of value.

计算并返回指定参数value绝对值。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public void Awake() {
		print(Mathf.Abs(-10));
	}
}
// prints 10
print(Mathf.Abs(-10));
最后修改:2011年2月22日 Tuesday 19:03

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。