版本: Unity 6 (6000.0)
语言英语
  • C#

Random.insideUnitCircle

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法接受所有提交的内容,但我们会阅读用户提出的每个建议,并在适用时进行更新。

关闭

提交失败

由于某种原因,您的建议更改无法提交。请<a>稍后再试</a>。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

切换到手册
public static Vector2 insideUnitCircle;

描述

返回半径为 1.0 的圆内或圆上的随机点。(只读)。

请注意,概率空间包括圆的周长,因为 value(包含 1.0)用于获取随机半径。

using UnityEngine;

public class ScriptExample : MonoBehaviour { void Start() { // Sets the position to be somewhere inside a circle // with radius 5 and the center at zero. Note that // assigning a Vector2 to a Vector3 is fine - it will // just set the X and Y values. transform.position = Random.insideUnitCircle * 5; } }