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
- Text Object position shifts when selecting multiple Text Objects and expanding the Extra Settings in the Inspector
- Keywords on Material Variants aren't automatically saved when changed on original Material through Shader Graph
- Light Probes get baked when calling LightProbes.Tetrahedralize
- Shadows flicker and cause visual artifacts when modifying a GameObject's bounds using Swizzle (Y Mask) and Sine Time nodes
- [WebGL] Frame rate drops by 5-20 fps when moving cursor or touch input in the Player
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.