unity使用WebRequest 方式加载assetbundle

纵然是瞬间 提交于 2019-12-05 19:30:40

string uri ="";
UnityWebRequest request = UnityWebRequestAssetBundle.GetAssetBundle(uri);

yield return request.SendWebRequest();
//AssetBundle ab = DownloadHandlerAssetBundle.GetContent(request);
AssetBundle ab = DownloadHandlerAssetBundle.GetContent(request);
Debug.Log(ab);
GameObject sp = ab.LoadAsset<GameObject>(filename);
Instantiate(sp);

使用AssetBundles-Browser-master可以傻瓜式打包

将材质需要的纹理 和材质本身打到同一个包下 

可以忽略依赖文件 只要下载一个包就行了

 

 只需要sphere这一个文件即可

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!