Version: 2021.1

Physics2D.OverlapPoint

切换到手册
public static Collider2D OverlapPoint (Vector2 point, int layerMask= DefaultRaycastLayers, float minDepth= -Mathf.Infinity, float maxDepth= Mathf.Infinity);

参数

point 世界空间中的点。
layerMask 筛选器,用于检查仅在指定层上的对象。
minDepth 仅包括 Z 坐标(深度)大于或等于该值的对象。
maxDepth 仅包括 Z 坐标(深度)小于或等于该值的对象。

返回

Collider2D The Collider overlapping the point.

描述

Checks if a Collider overlaps a point in space.

可选的 layerMask 可让测试仅检查特定层上的对象。

Although the Z axis is not relevant for rendering or collisions in 2D, you can use the minDepth and maxDepth parameters to filter objects based on their Z coordinate. If more than one Collider overlaps the point then the one returned will be the one with the lowest Z coordinate value. Null is returned if there are no Colliders over the point.

另请参阅:OverlapPointAllOverlapPointNonAlloc


public static int OverlapPoint (Vector2 point, ContactFilter2D contactFilter, Collider2D[] results);

参数

point 世界空间中的点。
contactFilter 接触筛选器,用于以不同方式筛选结果,例如按层遮罩、Z 深度。注意,法线角度不用于重叠测试。
results 用于接收结果的数组。该数组的大小决定可返回的结果的最大数量。

返回

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

描述

检查碰撞体是否与世界空间中的某个点重叠。

This function returns the number of Colliders found and places those Colliders in the results array. The results can also be filtered by the contactFilter. Note that filtering by normal angle is not available for overlap functions.


public static int OverlapPoint (Vector2 point, ContactFilter2D contactFilter, List<Collider2D> results);

参数

point 世界空间中的点。
contactFilter 接触筛选器,用于以不同方式筛选结果,例如按层遮罩、Z 深度。注意,法线角度不用于重叠测试。
results 用于接收结果的列表。

返回

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

描述

检查碰撞体是否与世界空间中的某个点重叠。

该整数返回值是写入到 results 列表中的结果数。如果结果列表中没有足够的元素来报告所有这些结果,则会调整列表的大小。这可在 results 列表无需调整大小时防止为结果分配内存,可在经常执行查询时提高垃圾收集性能。

也可以通过 contactFilter 对结果进行筛选。

注意,按法线角筛选不适用于重叠函数。