版本:Unity 6 (6000.0)
语言中文(简体)
  • C#

BuildAssetBundleOptions.UncompressedAssetBundle

提出修改建议

成功!

感谢帮助我们提高 Unity 文档的质量。尽管我们无法接受所有提交,但我们确实会阅读来自我们用户的每条建议意见,并在合适的地方进行更新。

关闭

提交失败

因为某些原因,无法提交您建议的修改。请<a>稍后再试</a>。感谢您花时间帮助我们提高 Unity 文档的质量。

关闭

取消

说明

创建 AssetBundle 时不压缩数据。

未压缩的包构建和加载的速度更快,但由于它们更大,因此下载时间更长。未压缩的 AssetBundle 为 16 字节对齐。

其他资源:AssetBundle 压缩BuildAssetBundleOptions.ChunkBasedCompressionBuildCompressionCompressionType

//Create a folder (right click in the Assets folder and go to Create>Folder), and name it “Editor” if it doesn’t already exist
//Place this script in the Editor folder

//This script creates a new Menu named “Build Asset” and new options within the menu named “Normal” and “Uncompressed Asset Bundle”. Click these menu items to build an AssetBundle into a folder.

using UnityEngine; using UnityEditor;

public class Example { //Creates a new menu (Build Asset Bundles) and item (Normal) in the Editor [MenuItem("Build Asset Bundles/Normal")] static void BuildABsNone() { //Build AssetBundles with no special options //They will be written in the custom folder ("MyAssetBuilds") which needs to exist prior to this call. BuildPipeline.BuildAssetBundles("Assets/MyAssetBuilds", BuildAssetBundleOptions.None, BuildTarget.StandaloneOSX); }

//Creates a new item (Uncompressed) in the new Build Asset Bundles menu [MenuItem("Build Asset Bundles/Uncompressed")] static void BuildABsUncompressed() { //Build the AssetBundles in uncompressed build mode BuildPipeline.BuildAssetBundles("Assets/MyAssetBuilds", BuildAssetBundleOptions.UncompressedAssetBundle, BuildTarget.StandaloneOSX); } }