public static int BoxCastNonAlloc (Vector2 origin, Vector2 size, float angle, Vector2 direction, RaycastHit2D[] results, float distance= Mathf.Infinity, int layerMask= DefaultRaycastLayers, float minDepth= -Mathf.Infinity, float maxDepth= Mathf.Infinity);

Parameters

origin盒体在 2D 空间中的起点。
size盒体的大小。
angle盒体的角度(以度为单位)。
directionA vector representing the direction of the box.
results用于接收结果的数组。
distanceThe maximum distance over which to cast the box.
layerMask过滤器,用于仅在特定层上检测碰撞体。
minDepth仅包括 Z 坐标(深度)大于或等于该值的对象。
maxDepth仅包括 Z 坐标(深度)小于或等于该值的对象。

Returns

int 返回放置在 results 数组中的结果数。

Description

Casts a box into the Scene, returning colliders that contact with it into the provided results array.

此函数类似于 BoxCastAll 函数,不同之处在于其结果会返回到提供的数组中。整数返回值是与该盒体交叠的对象数(可能为零),但如果结果数组中没有足够的元素来报告所有这些结果,则不会调整该数组的大小。其意义在于不为这些结果分配内存,因此在经常执行时会提高垃圾回收性能。

返回的 RaycastHit2D 将返回盒体将与碰撞体接触的点和法线。此外,它还返回当盒体接触该点时盒体的质心。

另请参阅:LayerMask 类、RaycastHit2D 类、BoxCastBoxCastAllDefaultRaycastLayersIgnoreRaycastLayerraycastsHitTriggers