返回介绍

Physics2D.GetRayIntersectionAll 获取射线交点所有

发布于 2019-12-18 15:38:17 字数 2110 浏览 1443 评论 0 收藏 0

JavaScript => static function GetRayIntersectionAll(ray: Ray, distance: float = Mathf.Infinity, layerMask: int = DefaultRaycastLayers): RaycastHit2D[];
C# => static RaycastHit2D[] GetRayIntersectionAll(Ray ray, float distance = Mathf.Infinity, int layerMask = DefaultRaycastLayers);

Parameters 参数

rayThe 3D ray defining origin and direction to test.
定义起源和方向进行测试的一条3D射线。
distanceMaximum distance over which to cast the ray.
射线的最大距离。
layerMaskFilter to detect colliders only on certain layers.
只在某些层检测碰撞器。

Returns 返回值

RaycastHit2D[] The cast results returned.
RaycastHit2D[] 返回投射结果。

Description 描述

Cast a 3D ray against the colliders in the scene returning all the colliders along the ray.
对场景内的碰撞器们投射一条3D射线,沿着射线返回所有接触到的碰撞器。

This is useful for finding colliders intersecting an arbitrary 3D ray.
这是对于找出一个碰撞器是非常有用的,用一条任意的3D射线去交叉(碰撞器)。

Note that this function will allocate memory for the returned RaycastHit2D array. You can use GetRayIntersectionNonAlloc to avoid this overhead if you need to make such calls frequently.
注意,这个函数将分配内存给返回的RaycastHit2D数组。如果你需要经常要调用这种功能,你可以使用GetRayIntersectionNonAlloc函数去避免这种(内存)开销。

Additionally this function is a 3D intersection test therefore any collision normals returned in the RaycastHit2D will be zero.
另外,这个函数是一个3D的相交测试因此任何在RaycastHit2D中返回的碰撞法线值将会是零。

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

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

发布评论

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