Unity 6.3
0 онлайн 76 гостей 3 в системе
Вход

Quaternion.Inverse

Declaration

public static Quaternion Inverse(Quaternion rotation);

Описание

Возвращает обратное rotation.

using UnityEngine;

public class Example : MonoBehaviour { // Sets this transform to have the opposite rotation of the target

Transform target; void Update() { transform.rotation = Quaternion.Inverse(target.rotation); } }