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.Euler

public static function Euler(x: float, y: float, z: float): Quaternion;

Description

Returns a rotation that rotates z degrees around the z axis, x degrees around the x axis, and y degrees around the y axis (in that order).

	// A rotation 30 degrees around the y-axis

var rotation = Quaternion.Euler(0, 30, 0);
public static function Euler(euler: Vector3): Quaternion;

Description

Returns a rotation that rotates z degrees around the z axis, x degrees around the x axis, and y degrees around the y axis (in that order).

	// A rotation 30 degrees around the y-axis

var rotation = Quaternion.Euler(Vector3(0, 30, 0));