Search Issue Tracker
By Design
Votes
0
Found in
2017.1.0a6
Issue ID
898820
Regression
Yes
[OSX][WWW] www.bytes returns null on mac
How to reproduce:
1. Open the attached project
2. Open and play test scene
Actual result: notice NullReferenceException in console
Expected result: www.bytes returns bytes and AssetBundle is loaded
Issue doesn't exist on Windows. Also it is not related to AssetBundles, I have tried loading text file, www.bytes still returns null.
Reproducible: 2017.1.0b1
Not reproducible: 2017.1.0a6
By Design:
This is because we made WWW to be a wrapper on top of UnityWebRequest and we are sticter in terms of URL validation.
This line is correct in Windows, but not OSX:
wwwPath = "file:///" + Application.streamingAssetsPath + "/iOS/" +assetBundleName;
because it result in Uri with 4 slashes after file:.
The correct way for this is:
new Uri(Application.streamingAssetsPath + "/iOS/" +assetBundleName, UriKind.Absolute).AbsoluteUri
This would result in proper URI under both Windows and OSX.
Comments (1)
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
- Emojis with different skin tone options show incorrectly when "Multi Atlas Textures" is enabled in the Font Asset Properties
- Eyedropper Tool Shows Black Square UI Artifact on Cursor (Ubuntu)
- Some Emoji and Ligature sequences containing Variant Selectors are misinterpreted
- Errors “Render Graph Execution error” and "KeyNotFoundException" are thrown and Scene/Game views are not rendered when RenderGraphBuilder has AsyncCompute enabled
- Separation Line is used at the bottom of Prefab dropdown options when there is nothing to separate
bariscigal
Dec 09, 2017 11:19
I am having this exact problem. The "solution" is as cryptic as the problem itself.
I can get www.bytesDownloaded but not www.bytes[] .
Why is this "by design" ?
Please update the api document as needed.