Search Issue Tracker
Fixed in 2018.1.X
Votes
7
Found in
5.3.0f4
Issue ID
764650
Regression
Yes
WWW.GetAudioClip outputs an empty error message in console
Reproduction steps:
1. Open the attached project
2. Open scene "New Scene"
3. Play
4. Notice that console outputs an empty error message
Reproduced on: 5.4.0b10, 5.3.0f4
Did not reproduce on: 5.2.4f1
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
- Crash on PrepareDrawShadowsCommandStep1 when entering the Play Mode in a specific project
- Physics Layer Collision Matrix's Layer names, checkboxes and hover highlights become misaligned when the Editor's UI Scaling gets changed
- Light/shadow information on an edge of a Terrain tile creates a seam with an adjacent Terrain tile when baking a LightMap
- "Missing types referenced from component UniversalRenderPipelineGlobalSettings on game object UniversalRenderPipelineGlobalSettings..." warning is thrown after switching the Platform to tvOS
- “Metal: Error creating pipeline state (Universal Render Pipeline/2D/Sprite-Lit-Default): Vertex attribute BLENDINDICES0(5) of type uint4 cannot be read using MTLAttributeFormatFloat2 (null)“ when setting GPU Skinning to GPU after opening the project
GetDoSed
Jun 28, 2016 02:57
This issue is completely breaking my project, has anyone found a workaround?
msousadoismundos
Jun 16, 2016 20:39
I can reproduce this with this method:
IEnumerator ThisWillCauseAnError () {
WWW request = new WWW ("http://www.freesfx.co.uk/rx2/mp3s/3/14748_1460059440.mp3");
yield return null;
AudioClip clip = request.GetAudioClip (false, true);
}