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

Parameters

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

Returns

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

Description

Get a list of all Colliders that overlap all Colliders attached to this Rigidbody2D.

The integer return value is the number of Colliders that overlap the 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 check is performed frequently.

另请参阅:Physics2D.OverlapColliderCollider2D.OverlapColliderRigidbody2D.GetAttachedColliders


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 all Colliders attached to this Rigidbody2D.

The integer return value is the number of results written into the results list. 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.OverlapColliderCollider2D.OverlapColliderRigidbody2D.GetAttachedColliders