包含此页的版本:
不含此页的版本:
返回半径为 1 的球体内的随机点(只读)。
using UnityEngine;public class Example : MonoBehaviour { void Start() { // Sets the position to be somewhere inside a sphere // with radius 5 and the center at zero. transform.position = Random.insideUnitSphere * 5; } }