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

スクリプト言語

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

Quaternion.Euler

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public static function Euler(x: float, y: float, z: float): Quaternion;
public static Quaternion Euler(float x, float y, float z);
public static def Euler(x as float, y as float, z as float) as 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);
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour {
    public Quaternion rotation = Quaternion.Euler(0, 30, 0);
}
import UnityEngine
import System.Collections

public class ExampleClass(MonoBehaviour):

	public rotation as Quaternion = Quaternion.Euler(0, 30, 0)

public static function Euler(euler: Vector3): Quaternion;
public static Quaternion Euler(Vector3 euler);
public static def Euler(euler as Vector3) as 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));
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour {
    public Quaternion rotation = Quaternion.Euler(new Vector3(0, 30, 0));
}
import UnityEngine
import System.Collections

public class ExampleClass(MonoBehaviour):

	public rotation as Quaternion = Quaternion.Euler(Vector3(0, 30, 0))