AssetBundle 策略

Posted Tekkaman

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AssetBundle 策略相关的知识,希望对你有一定的参考价值。

AssetBundle 策略

1、Logical Entity Grouping。按逻辑功能分。

Examples

  • Bundling all the textures and layout data for a User-Interface screen
  • Bundling all the models and animations for a character/set of characters
  • Bundling the textures and models for pieces of the scenery shared across multiple levels

  最上层逻辑适用于此策略,或单一完整的功能试用于此数据。如一个角色数据,一个道具数据。

2、Type Grouping。按类型分。

  适用于资源按平台区分。如同一个shader,iosandroid、windows可以分别下载不同的asset bundle。

3、Concurrent Content Grouping

  适用于按场景分。

4、其它分类策略。

  1)高频资源与低频资源区分。

  2)如果资源的多个版本,用variant来区分。

  3)相斥的两个资源必须旋转于不同的asset bundle。如高模、低模。

  

参考:file:///C:/Program%20Files/Unity/Editor/Data/Documentation/en/Manual/AssetBundles-Preparing.html

以上是关于AssetBundle 策略的主要内容,如果未能解决你的问题,请参考以下文章

Unity3D 5.3 新版AssetBundle使用方案及策略

[Unity]浅谈AssetBundle的依赖关系打包与加载

Unity中的AssetBundle

Unity3D AssetBundle相关

Unity进阶----AssetBundle_03(2018/11/07)

Unity 资源管理与AssetBundle详解