返回具有一致分布的随机旋转(只读)。
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { void Example() { transform.rotation = Random.rotationUniform; } }