Version: 2022.2
LanguageEnglish
  • C#

Collider2D.forceSendLayers

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public LayerMask forceSendLayers;

Description

The Layers that this Collider2D is allowed to send forces to during a Collision contact with another Collider2D.

When a collision occurs between two Collider2D, both Colliders would normally apply a force to each other that separates them. Both Colliders have a Layer assigned to them respectively, which can be the same or different Layer(s). For the forces to apply, each Collider must send a force to the Layer that is assigned to the other Collider, while also receiving a force on their own Layer from the other Collider. Thus, both Colliders must mutually agree on which Layers the forces are being sent and received.

The forceSendLayers property allows you to select which Layers that the Collider sends a force to, while forceReceiveLayers allows you to select which Layers the Collider receives a force from.

NOTES:

See Also: Collider2D.forceReceiveLayers.