Search Issue Tracker
Won't Fix
Votes
0
Found in
2018.4
2018.4.21f1
2019.3
2020.1
2020.2
Issue ID
1243700
Regression
No
Crash on AssetBundle.LoadFromFile() when the asset has been unloaded using AssetBundle.Unload(true)
How to reproduce:
1. Open the attached 'project-12473700.zip' project and load 'SampleScene' scene
2. Enter Play mode
3. Press the 'load' button
4. Press the 'unload' button
5. Press the 'loadAgain' button
CRASH
Reproducible with: 2018.4.22f1, 2019.3.13f1, 2020.1.0b8, 2020.2.0a9
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
- Articulation Body with 'Revolute' Joint Type has erratic behavior when Upper Limit is set to above 360
- WebGL Player fails to render Scene when Terrain with Detail Mesh is added and WebGPU Graphics API is used
- Inconsistent errors are logged when different types are passed into the Query "Q<>" method in UIToolkit and the ancestor VisualElement is null
- Crash on GetMaterialPropertyByIndex when opening a specific Scene
- Discrepancies in the styling are present when using a TSS file instead of a USS file in custom EditorWindow
Resolution Note:
This is due to a game object that needed a bundle got unloaded. It is prefer to unload all the related bundle rather than partial unloading when doing a Unload(true);. Also by doing Unload(false);, the object needed wont be unloaded.