Mathf.Sign 符号

static function Sign (f : float) : float

Description描述

Returns the sign of f.

返回 f 的符号。

Return value is 1 when f is positive or zero, -1 when f is negative.

当 f 为正或为0返回1,为负返回-1。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public void Awake() {
		Debug.Log(Mathf.Sign(-10));
		Debug.Log(Mathf.Sign(10));
	}
}
Debug.Log(Mathf.Sign(-10));
Debug.Log(Mathf.Sign(10));
最后修改:2011年2月23日 Wednesday 13:46

本脚本参考基于Unity 3.4.1f5

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