Returns a random rotation (Read Only).
// Sets a random orientation for the object. transform.rotation = Random.rotation;
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void Example() { transform.rotation = Random.rotation; } }