public int OverlapCollider (ContactFilter2D contactFilter, Collider2D[] results);

Parameters

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

Returns

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

Description

获取与该碰撞体重叠的所有碰撞体的列表。

The integer return value is the number of colliders that overlap this Collider and which could be stored in the supplied array given its length. The results array will not be resized if it doesn't contain enough elements to report all the results. The significance of this is that no memory is allocated for the results and so garbage collection performance is improved when the query is performed frequently.

另请参阅:Physics2D.OverlapColliderRigidbody2D.OverlapCollider


Parameters

contactFilter接触筛选器,用于以不同方式筛选结果,例如按层遮罩、Z 深度。注意,法线角度不用于重叠测试。
resultsThe list to receive results.

Returns

void Returns the number of results placed in the results list.

Description

Get a list of all Colliders that overlap this Collider.

The integer return value is the number of Colliders that overlap this Collider with the specific Colliders stored in the supplied list. The results array will not be resized if it doesn't contain enough elements to report all the results. The results list will be resized if it doesn't contain enough elements to report all the results. This prevents memory from being allocated for results when the results list does not need to be resized, and improves garbage collection performance when the query is performed frequently.

另请参阅:Physics2D.OverlapColliderRigidbody2D.OverlapCollider