言語: 日本語
  • C#
  • JS
  • Boo

スクリプト言語

お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。

Quaternion.Angle

public static function Angle(a: Quaternion, b: Quaternion): float;

Description

Returns the angle in degrees between two rotations a and b.

	// Calculates the angle (degrees) between
	// the rotation of this transform and target.

	var target : Transform;
	
	function Update () {
		var angle : float = Quaternion.Angle(transform.rotation, target.rotation);
	}