origin | 盒体在 2D 空间中的起点。 |
size | 盒体的大小。 |
angle | 盒体的角度(以度为单位)。 |
direction | A vector representing the direction of the box. |
distance | The maximum distance over which to cast the box. |
layerMask | 过滤器,用于仅在特定层上检测碰撞体。 |
minDepth | 仅包括 Z 坐标(深度)大于或等于该值的对象。 |
maxDepth | 仅包括 Z 坐标(深度)小于或等于该值的对象。 |
RaycastHit2D[] 返回的投射数量。
Casts a box against colliders in the Scene, returning all colliders that contact with it.
A BoxCast is conceptually like dragging a box through the Scene in a particular direction. Any object making contact with the box can be detected and reported.
该函数类似于 BoxCast 函数,但它并非仅检测命中的第一个碰撞体,而是返回一个盒体行进路径上接触到的所有碰撞体的数组。数组中的碰撞体按到原点的距离顺序排序。layerMask 可用于仅在特定层上有选择地检测对象(例如,这让您能够仅将检测应用于敌人角色)。
返回的 RaycastHit2D 将返回盒体将与碰撞体接触的点和法线。此外,它还返回当盒体接触该点时盒体的质心。
另请参阅:LayerMask 类、RaycastHit2D 类、BoxCast、BoxCastNonAlloc、DefaultRaycastLayers、IgnoreRaycastLayer、raycastsHitTriggers。