Version: 2019.2
public static Quaternion rotation ;

Description

Возвращает случайное вращение (Read Only).

using UnityEngine;

// Click button and a rotation will be applied

public class ExampleClass : MonoBehaviour { void OnGUI() { if (GUI.Button(new Rect(10, 10, 100, 50), "rotation")) { transform.rotation = Random.rotation; } } }