JoshWindsor 发表于 2022-7-13 21:52

Unity Addressable Asset Bundle

1、Addressable 包和AssetBundle包有啥区别

Addressable Asset Bundle可以自动加载相关依赖包,而AssetBundle是需要编程实现的;Addressable Asset Bundle加载到内存中的bundle有引用计数,而AssetBundle加载到内存中的bundle需要自己进行管理Addressable Asset Bundle加载地址灵活;
2、安装Addressables包


打开Unity Editor,通过PackageManager安装Addressable包(如有加密需求,请安装Addressables.CN),Packages选择Unity Registry后搜索Addressables。


image.png


image.png

3、打包流程

3.1 安装完毕后Window > Asset Management > Addressables > Groups


image.png

3.2初始化配置


image.png

3.3使用Addressable


检查资产检查器中 的可寻址框:


image.png


将资产拖到Addressables Groups窗口上的组中:


image.png



将资产放入标记为可寻址的项目文件夹中:


image.png


将资产设置为可寻址后,可寻址系统会将其添加到默认组中(除非您将其放置在特定组中)。当您进行内容构建时,Addressables根据您的组设置将组中的资产打包到AssetBundles中。
页: [1]
查看完整版本: Unity Addressable Asset Bundle