当前位置:   article > 正文

BuildAssetBundleOptions 资源包编译选项

buildassetbundleoptions
    public enum BuildAssetBundleOptions
    {
        //
        // 摘要:
        //     Build assetBundle without any special option.
        None = 0,
        //
        // 摘要:
        //     Don't compress the data when creating the asset bundle.
        // 对ab不进行数据压缩。输入的ab包会很大,不过输入和加载会很快
        UncompressedAssetBundle = 1,
        //
        // 摘要:
        //     Includes all dependencies.
        // 包含所有依赖关系
        CollectDependencies = 2,
        //
        // 摘要:
        //     Forces inclusion of the entire asset.
        // 强制包括整个资源
        CompleteAssets = 4,
        //
        // 摘要:
        //     Do not include type information within the AssetBundle.
        // 不包含类型信息。发布web平台时,不能使用该选项
        DisableWriteTypeTree = 8,
        //
        // 摘要:
        //     Builds an asset bundle using a hash for the id of the object stored in the asset
        //     bundle.
        // 使每个object具有唯一不变的hashID, 可用于增量式发布AssetBundle
        DeterministicAssetBundle = 16,
        //
        // 摘要:
        //     Force rebuild the assetBundles.
        // 强制重新build所有ab
        ForceRebuildAssetBundle = 32,
        //
        // 摘要:
        //     Ignore the type tree changes when doing the incremental build check.
        // 忽略typetree的变化,不能与DisableWriteTypeTree同时使用
        IgnoreTypeTreeChanges = 64,
        //
        // 摘要:
        //     Append the hash to the assetBundle name.
        // 附加hash到assetbundle名字中
        AppendHashToAssetBundleName = 128,
        //
        // 摘要:
        //     Use chunk-based LZ4 compression when creating the AssetBundle.
        // 使用lz4的格式压缩ab,ab会在加载资源时才进行解压。默认的压缩格式是lzma,它会使用ab在下立即解压。
        ChunkBasedCompression = 256,
        //
        // 摘要:
        //     Do not allow the build to succeed if any errors are reporting during it.
        // 使用严格模式build ab, 有任何非致命的error都不会build成功.
        StrictMode = 512,
        //
        // 摘要:
        //     Do a dry run build.
        DryRunBuild = 1024,
        //
        // 摘要:
        //     Disables Asset Bundle LoadAsset by file name.
        // 不使用FileName来加载ab
        DisableLoadAssetByFileName = 4096,
        //
        // 摘要:
        //     Disables Asset Bundle LoadAsset by file name with extension.
        // 不使用带后缀的文件名来加载ab
        DisableLoadAssetByFileNameWithExtension = 8192
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/108930?site
推荐阅读
相关标签
  

闽ICP备14008679号