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
- [VFX Graph] Base Color Map Inconsistency between Lit and Unlit Ouput
- [HDRP] Water is using the wrong depth when calculating absorption for alpha clipped transparents with depth prepass enabled
- [VFX Graph] Emissive isn't working with Decal output
- Gizmos are not drawn in Game view and Render Graph Execution errors are shown when stacked Overlay Camera is used and 'Compatibility Mode' is disabled
- Crash on WalkTypeTreeInternal when selecting the Texture of a specific FBX
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.