Search Issue Tracker
By Design
Votes
0
Found in
2017.4
2020.2
Issue ID
1239463
Regression
No
OnDisable and OnDestroy are not called on deleted ScriptableObject
How to reproduce:
1. Open the attached (repro.zip) project
2. In Project Window delete "SO.asset"
3. Check the Console Window
Expected result: "SO.OnDisable" and "SO.OnDestroy" logs appear
Actual result: No logs appear
Reproducible with: 2017.4.40f1, 2018.4.21f1, 2019.3.11f1, 2020.1.0b6, 2020.2.0a8
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
- Imported FBX is rendered differently in Game view when comparing to Scene view
- "GetAllOverlapping failed" Error displayed in console or endless loading process on Application.Message.LeftButtonUp when cycle-selecting GameObjects with GPU Resident Drawer enabled
- Scene View has an inverted Game View window when changing from Game View to Scene View on a specific project
- An error is thrown when one TreeView root element is dragged and held over a parent element but is dropped between the elements
- Text Object position shifts when selecting multiple Text Objects and expanding the Extra Settings in the Inspector
Resolution Note:
After looking into this case I see its expected behavior.
The script does following:
Creates ScriptableObject (SO)
- OnEnable is called
Creates Asset
- Will not call any events, as its only serializing the data.
Attaching that Asset produced to a MonoBehaviour that is added to a scene will invoke all the events as expected.