返回介绍

Random.insideUnitCircle 单位圆内

发布于 2019-12-18 15:38:22 字数 1035 浏览 1317 评论 0 收藏 0

JavaScript => public static var insideUnitCircle: Vector2;
C# => public static Vector2 insideUnitCircle;

Description 描述

Returns a random point inside a circle with radius 1 (Read Only).

随机返回一个半径为1的单位圆内的点。

JavaScript:

	// Sets the position to be somewhere inside a circle
        // 将位置设置为一个半径为5中心点在原点的圆圈内的某个点.
	// with radius 5 and the center at zero.
 
	var newPosition : Vector2 = Random.insideUnitCircle * 5;
	transform.position.x = newPosition.x;
	transform.position.y = newPosition.y;

C#:

// 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;

Random

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文