Version: 2020.2
LanguageEnglish
  • C#

Physics2D.reuseCollisionCallbacks

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 static bool reuseCollisionCallbacks;

Description

Determines whether the garbage collector should reuse only a single instance of a Collision2D type for all collision callbacks.

When an MonoBehaviour.OnCollisionEnter2D, MonoBehaviour.OnCollisionStay2D or MonoBehaviour.OnCollisionExit2D collision callback occurs, the Collision2D object passed to it is created for each individual callback. This means the garbage collector has to remove each object, which reduces performance.

When this option is true, only a single instance of the Collision2D type is created and reused for each individual callback. This reduces waste for the garbage collector to handle and improves performance.

You would only set this option to false if the Collision2D object is referenced outside of the collision callback for processing later, so recycling the Collision2D object is not required.