IsTouchingLayers(Collider2D, int)
Checks whether the Collider is touching any Colliders on the specified layerMask or not.
Read time 1 minuteLast updated 8 days ago
Definition
- Type: Method
- Namespace: UnityEngine
- Assembly: UnityEngine.Physics2DModule
public static bool IsTouchingLayers(Collider2D collider, int layerMask)
Parameters
Returns
Type | Description |
|---|---|
| bool | Whether the |
Remarks
It is important to understand that checking if Colliders are touching or not is performed against the last physics engine update i.e. the state of touching Colliders at that time. If you have just added a new Collider2D or have moved a Collider2D but a physics update has not yet taken place then the Colliders will not be shown as touching. The touching state is identical to that indicated by the physics collision or trigger callbacks.