Mathf.DeltaAngle 增量角

static function DeltaAngle (current : float, target : float) : float

Description描述

Calculates the shortest difference between two given angles.

计算给定的两个角之间最短的差异。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public void Awake() {
		Debug.Log(Mathf.DeltaAngle(1080, 90));
	}
}
// Prints 90
Debug.Log(Mathf.DeltaAngle(1080,90));
最后修改:2011年2月23日 Wednesday 22:32

本脚本参考基于Unity 3.4.1f5

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