Random.insideUnitSphere

切换到手册
public static Vector3 insideUnitSphere ;

描述

返回半径为 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; } }