unity学习 5.x依赖打包和解包

Posted gasor

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了unity学习 5.x依赖打包和解包相关的知识,希望对你有一定的参考价值。

unity5已经封装好了接口,所以依赖打包并没有那么神秘和复杂了。


打包:
1.定义好资源的assetBundleName
2.BuildPipeline.BuildAssetBundles,指定资源目录和压缩类型
 
生成:
1.Assetbundle文件,加载时的首要文件,包含所有资源的依赖信息
2.每个文件对应一个.manifest,不用管他,但是可以打开查看他引用了哪些资源。
 
加载:
1.获取AssetBundle文件
2.LoadAsset("AssetBundleManifest")转换为AssetBundleManifest
3.通过manifest.GetAllDependencies("测试文件"),获取它依赖的ab,得到的是AB数组,并下载它
4.最后下载名为(测试文件)的资源即可。
 
测试代码:
  1. using UnityEngine;  
  2. using System.Collections;  
  3.   
  4. public class LoadAssetbundle : MonoBehaviour {  
  5.       
  6.     void Start()  
  7.     {  
  8.         // 1.加载Manifest文件  
  9.         AssetBundle manifestBundle=AssetBundle.CreateFromFile(Application.dataPath +"/ab/Assetbundle");  
  10.         if(manifestBundle != null)  
  11.         {  
  12.             AssetBundleManifest manifest = (AssetBundleManifest)manifestBundle.LoadAsset("AssetBundleManifest");  
  13.             // 2.获取依赖文件列表  
  14.             string[] cubedepends = manifest.GetAllDependencies("assets/res/1.prefab");  
  15.             AssetBundle[] dependsAssetbundle = new AssetBundle[cubedepends.Length];  
  16.             for(int index = 0; index < cubedepends.Length; index++)  
  17.             {  
  18.                 // 3.加载所有的依赖资源  
  19.                 dependsAssetbundle[index]=AssetBundle.CreateFromFile(  
  20.                     Application.dataPath +"/../Assetbundle/"+cubedepends[index]);  
  21.             }  
  22.   
  23.             // 4.加载资源  
  24.             AssetBundle cubeBundle=AssetBundle.CreateFromFile(  
  25.                 Application.dataPath +"/ab/assets/res/1.prefab" );  
  26.             GameObject cube=cubeBundle.LoadAsset("1") as GameObject;  
  27.             if(cube!=null)  
  28.             {  
  29.                 Instantiate(cube);  
  30.             }  
  31.         }  
  32.     }  
 
坑tips:
如果材质球的名称和它引用的贴图名称一样,材质球内存占有量就会像包含了贴图的内存一样。
 
换版本tips:
4.6项目移植到5.0.2,ab包无法加载,重新打包即可。
不改打包代码,多数文件大小增大2k
改为最新打包代码,不做依赖,多数文件大小增大2-4%左右
 
tips:
如果做依赖,会生成很多零碎的文件,开发期不建议使用,以免增加不必要的工作量。和美术定义好资源规范才是重点。(个人意见,不喜随你便)

以上是关于unity学习 5.x依赖打包和解包的主要内容,如果未能解决你的问题,请参考以下文章

Unity AB打包步骤(5.X版本)

Unity3D资源文件 ③ ( Unity 资源包简介 | 导出 Unity 资源包 | 导出资源包的包含依赖选项 | 导入 Unity 资源包 | Unity 资源商店 )

unity学习 5.x解包

Unity3d 5.x AssetBundle打包与加载

Unity 5.x 导入教学Demo

unity在资源打包的时候,关于 hash 计算的简单总结