Legacy Documentation: Version 5.1
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Quaternion.Angle

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

Parameters

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); }