包含此页的版本:
不含此页的版本:
返回半径为 1 的球体表面上的随机点(只读)。
using UnityEngine;public class Example : MonoBehaviour { void Start() { // Sets the rigidbody velocity to 10 and in a random direction. GetComponent<Rigidbody>().velocity = Random.onUnitSphere * 10; } }