Search Issue Tracker
Won't Fix
Votes
1
Found in
5.2.2p4
Issue ID
746294
Regression
No
[WWW][AssetBundles] When downloading asset bundle, Editor hangs
Steps to reproduce:
1. Open attached project
2. In top menu bar click "Test > Build AssetBundles"
3. On top menu bar click "Test > Open Downloader"
4. Click "zip file (async)" and notice that it loads well
5. Click "asset bundle (async) and notice that console is spammed with "downloading : 1'. This is result of having isDone set to false
6. Click "zip file (sync)"
7. Notice that zip is downloaded well
8. Click "asset bundle (sync)"
9. Actual result - Notice that editor hangs
Expected result: Asset bundle is downloaded same as zip file
Comments (2)
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
- URP Terrain Demo crash on burst_signal_handler after Generating lighting
- Project window button icons are poorly visible and their shades differ in Light theme
- GC.Alloc called by HDRenderPipeline.LensFlareMergeOcclusionDataDrivenPass() when playing the default HDRP Sample Template project
- Automatic LOD fails and SRP Batcher incompatibility occurs when using spline-based quad-topology meshes
- Editor crashes on D3D12GetInterface when repeatedly enabling and disabling 256 text components
DonKanallie
Jul 27, 2016 15:42
Happens in 5.3.4p1 and 5.3.5p8 as well.
Saving the current scene via a keyboard shortcut (⌘S on macOS) also refreshes isDone to the correct state.
This happens to any file download, not just AssetBundles.
UnityEditor.EditorApplication.update += Update;
void Update()
{
if (www.isDone)
{
// www.progress stays at 1.0f forever but isDone stays on false.
// This seem to occur depending on the data that is downloaded.
}
}
This is currently a huge hassle in our production pipeline!
DonKanallie
Jul 27, 2016 15:41
Happens in 5.3.4p1 and 5.3.5p8 as well.
Saving the current scene via a keyboard shortcut (⌘S on macOS) also refreshes isDone to the correct state.
This happens to any file download, not just AssetBundles.
UnityEditor.EditorApplication.update += Update;
void Update()
{
if (www.isDone)
{
// www.progress stays at 1.0f forever but isDone stays on false.
// This seem to occur depending on the data that is downloaded.
}
}
This is currently a huge hassle in our production pipeline!