Search Issue Tracker
Fixed in 5.6.0
Votes
6
Found in
4.6.0b17
Issue ID
637042
Regression
No
OnTriggerExit2D is not happening when other colliding object is beeing destroyed
To reproduce this bug:
1. Open the attached project
2. Open 'OnTriggerExit2D' scene
3. Play the scene
4. Notice that object is instantiated and OnTriggerEnter2D is triggered
5. Notice when the object is destroyed OnTriggerExit2D is not triggered and does not work
Comments (5)
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Redoing creation of Sub Scenes and Cube GameObjects in Hierarchy throws “Assertion failed on expression: 'targetScene != nullptr’” error in Console window
- Selecting “New Sub Scene” after assigning “New Scene” in Sub Scene Script Component throws “Destroying GameObjects immediately is not permitted” in the Console window
- Shader Graph "Zoom Step Size" can be set to 0 even though the zoom still works
- Enabling/Disabling the Deprecated Nodes doesn't apply to the opened Shader Graph unless any Variable is added to the Blackboard
- Group Selection title text size is smaller in renaming than the actual font size
dmcguire3762
Dec 30, 2019 17:10
Unsure if this was not fixed at all for OnTriggerExit, but as HOTTABYCH mentioned this is still present in 2018.3.9
hottabych
Mar 29, 2019 11:39
2018.3.10, this bug still presents (for OnTriggerExit)
Zoser
Apr 29, 2016 00:05
This also happens when you disable the collider. OnTriggerExit2D is not called at all, though OnTriggerEnter2D is called when you enable the collider.
burritoco
Feb 08, 2016 04:49
I would love to know something about Unity's thoughts on this. This would be a very useful thing to have.
Cine
Mar 06, 2015 05:36
I presume it is intended, since the object didn't really exit, it just disappeared. Plus the fact that this happens during Physics update, whereas the destroy can happen in any phase.
But it would be really nice if there was an OnTriggerDisappear() that would be called when the collider is destroyed or disabled, or the game object it is on is disabled.