理解AssetBundle.Unload()

作者:追风剑情 发布于:2018-12-12 15:50 分类:Unity3d

官方文档 https://unity3d.com/cn/learn/tutorials/topics/best-practices/assetbundle-usage-patterns

示例代码

  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4.  
  5. public class TestGUI : MonoBehaviour {
  6.  
  7. public AssetBundle ab;
  8. public Object[] assets;
  9.  
  10. void Start () {
  11. StartCoroutine(LoadModel());
  12. }
  13.  
  14. IEnumerator LoadModel()
  15. {
  16. yield return null;
  17. string url = string.Format("file://{0}/model_lady01.model", Application.streamingAssetsPath);
  18. WWW www = new WWW(url);
  19. while (!www.isDone)
  20. yield return www;
  21. if (!string.IsNullOrEmpty(www.error)) {
  22. Debug.LogError("加载资源失败 " + url + "\n" + www.error);
  23. }else{
  24. ab = www.assetBundle;
  25. assets = ab.LoadAllAssets();
  26. OnLoadCompleted(assets);
  27. }
  28. }
  29.  
  30. void OnLoadCompleted(Object[] assets)
  31. {
  32. GameObject mainAsset = null;
  33. //找到模型资源作为主资源
  34. for(int i=0; i < assets.Length; i++) {
  35. if (assets[i].name.StartsWith("model_")) {
  36. mainAsset = assets[i] as GameObject;
  37. break;
  38. }
  39. }
  40.  
  41. if (mainAsset == null) {
  42. Debug.LogErrorFormat("not model asset. url={0}", "");
  43. return;
  44. }
  45.  
  46. GameObject model = GameObject.Instantiate(mainAsset);
  47. }
  48.  
  49. private void OnGUI() {
  50. if (GUI.Button(new Rect(0, 0, 200, 40), "Unload(false)")) {
  51. ab.Unload(false);//释放镜像资源
  52. }
  53.  
  54. if (GUI.Button(new Rect(0, 50, 200, 40), "Unload(true)")) {
  55. ab.Unload(true);//释放资源
  56. }
  57. }
  58. }


运行测试

不调用AssetBundle.Unload()
1111.png

调用AssetBundle.Unload(false)
销毁AssetBundle资源,保留从AssetBundle加载出来的资源。
2222.png

调用AssetBundle.Unload(true)
销毁AssetBundle资源,以及从AssetBundle加载出来的资源。
3333.png

4444.png

如果使用了AssetBundle.Unload(false), 那么从AssetBundle加载出来的资源仅能以下面两种方式御载
1、消除对资源的所有引用,然后手动调用Resources.UnloadUnusedAssets()
2、以非叠加方式切换场景
官方说明

7777.png

如果用WWW加载时报以下错
33333.png
11111.png
222.png

解决方案: 改成异步加载资源

  1. private IEnumerator LoadTextureFromWWW(string url)
  2. {
  3. yield return null;
  4. WWW www = new WWW(url);
  5. while (!www.isDone)
  6. yield return www;
  7.  
  8. if (!string.IsNullOrEmpty(www.error))
  9. {
  10. Debug.LogErrorFormat("加载贴图出错\n{0} url={1}", www.error, www.url);
  11. }
  12. else
  13. {
  14. AssetBundle ab = www.assetBundle;
  15. if (ab != null)
  16. {
  17. string tex_name = Path.GetFileNameWithoutExtension(url);
  18. AssetBundleRequest request = ab.LoadAssetAsync(tex_name);
  19. yield return request;
  20. OnLoadTextureCompleted(request.asset as Texture2D);
  21.  
  22. //上面须用LoadAssetAsync,否则Unload可能导致报错
  23. ab.Unload(false);//释放镜像资源,否则重复加载同名同后缀的ab资源会报错
  24. }
  25. }
  26. }


//清理内存
Resources.UnloadUnusedAssets();
System.GC.Collect();

标签: Unity3d

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号