Возвращает случайное вращение с равномерным распределением (Read Only).
// Sets a random orientation for the object. transform.rotation = Random.rotationUniform;
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void Example() { transform.rotation = Random.rotationUniform; } }