Version: 5.3 (switch to 5.4b)
ЯзыкEnglish
  • C#
  • JS

Язык программирования

Выберите подходящий для вас язык программирования. Все примеры кода будут представлены на выбранном языке.

Quaternion.Euler

Предложить изменения

Успех!

Благодарим вас за то, что вы помогаете нам улучшить качество документации по Unity. Однако, мы не можем принять любой перевод. Мы проверяем каждый предложенный вами вариант перевода и принимаем его только если он соответствует оригиналу.

Закрыть

Ошибка внесения изменений

По определённым причинам предложенный вами перевод не может быть принят. Пожалуйста <a>попробуйте снова</a> через пару минут. И выражаем вам свою благодарность за то, что вы уделяете время, чтобы улучшить документацию по Unity.

Закрыть

Отменить

Руководство
public static function Euler(x: float, y: float, z: float): Quaternion;
public static Quaternion Euler(float x, float y, float z);

Параметры

Описание

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

public static function Euler(euler: Vector3): Quaternion;
public static Quaternion Euler(Vector3 euler);

Параметры

Описание

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