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