Version: 5.3
public bool IsTouching (Collider2D collider);

파라미터

collider The collider to check if it is touching any of the collider(s) attached to this rigidbody.

반환

bool Whether the collider is touching any of the collider(s) attached to this rigidbody or not.

설명

Check whether any of the collider(s) attached to this rigidbody are touching the collider or not.

It is important to understand that checking if colliders are touching or not is performed against the last physics system 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.