Legacy Documentation: Version 5.2
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Collider2D.IsTouchingLayers

Switch to Manual
public bool IsTouchingLayers(int layerMask = Physics2D.AllLayers);

Parameters

layerMask Any colliders on any of these layers count as touching.

Returns

bool Whether this collider is touching any collider on the specified layerMask or not.

Description

Checks whether this collider is touching any colliders on the specified layerMask 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.