ランダムな Quaternion 型の値を返します(読み取り専用)
// 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; } }