Hi,
I am using AssetBundles with WWW on a standalone application. I have :
path = "file:/" + Application.dataPath + "/AssetBundles/myassetbundle";
www = new WWW(path);
If I have a special charactère (like é or è…), the WWW can’t find the folder and fails.
I tried WWW.EscapeURL(path) but WWW can’t understand the path.
How can I encode my url with special character ?
Thanks a lot