ランダムなQuaternion型の値を返します (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; } }
import UnityEngine import System.Collections public class ExampleClass(MonoBehaviour): def Example() as void: transform.rotation = Random.rotation