Legacy Documentation: Version 4.6(go to latest)
Language: English
  • C#
  • JS
  • Boo

Script language

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

Quaternion.AngleAxis

public static function AngleAxis(angle: float, axis: Vector3): Quaternion;

Description

Creates a rotation which rotates angle degrees around axis.

	// Sets the transforms rotation to rotate 30 degrees around the y-axis
	transform.rotation = Quaternion.AngleAxis(30, Vector3.up);