contactFilter | 接触筛选器,用于以不同方式筛选结果,例如按层遮罩、Z 深度。注意,法线角度不用于重叠测试。 |
results | 用于接收结果的数组。该数组的大小决定可返回的结果的最大数量。 |
int
返回放置在 results
数组中的结果数。
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.OverlapCollider、Collider2D.OverlapCollider 和 Rigidbody2D.GetAttachedColliders。
contactFilter | 接触筛选器,用于以不同方式筛选结果,例如按层遮罩、Z 深度。注意,法线角度不用于重叠测试。 |
results | The list to receive results. |
void
Returns the number of results placed in the results
list.
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.OverlapCollider、Collider2D.OverlapCollider 和 Rigidbody2D.GetAttachedColliders。