Legacy Documentation: Version 2017.1 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Method group is Obsolete

BuildPipeline.BuildAssetBundleExplicitAssetNames

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Obsolete public static function BuildAssetBundleExplicitAssetNames(assets: Object[], assetNames: string[], pathName: string, assetBundleOptions: BuildAssetBundleOptions): bool;
Obsolete public static bool BuildAssetBundleExplicitAssetNames(Object[] assets, string[] assetNames, string pathName, BuildAssetBundleOptions assetBundleOptions);
Obsolete public static function BuildAssetBundleExplicitAssetNames(assets: Object[], assetNames: string[], pathName: string, out crc: uint, assetBundleOptions: BuildAssetBundleOptions): bool;
Obsolete public static bool BuildAssetBundleExplicitAssetNames(Object[] assets, string[] assetNames, string pathName, out uint crc, BuildAssetBundleOptions assetBundleOptions);
Obsolete public static function BuildAssetBundleExplicitAssetNames(assets: Object[], assetNames: string[], pathName: string): bool;
Obsolete public static bool BuildAssetBundleExplicitAssetNames(Object[] assets, string[] assetNames, string pathName);
Obsolete public static function BuildAssetBundleExplicitAssetNames(assets: Object[], assetNames: string[], pathName: string, out crc: uint): bool;
Obsolete public static bool BuildAssetBundleExplicitAssetNames(Object[] assets, string[] assetNames, string pathName, out uint crc);
Obsolete public static function BuildAssetBundleExplicitAssetNames(assets: Object[], assetNames: string[], pathName: string, assetBundleOptions: BuildAssetBundleOptions, targetPlatform: BuildTarget): bool;
Obsolete public static bool BuildAssetBundleExplicitAssetNames(Object[] assets, string[] assetNames, string pathName, BuildAssetBundleOptions assetBundleOptions, BuildTarget targetPlatform);
Obsolete public static function BuildAssetBundleExplicitAssetNames(assets: Object[], assetNames: string[], pathName: string, out crc: uint, assetBundleOptions: BuildAssetBundleOptions, targetPlatform: BuildTarget): bool;
Obsolete public static bool BuildAssetBundleExplicitAssetNames(Object[] assets, string[] assetNames, string pathName, out uint crc, BuildAssetBundleOptions assetBundleOptions, BuildTarget targetPlatform);

Parameters

assets A collection of assets to be built into the asset bundle. Asset bundles can contain any asset found in the project folder.
assetNames An array of strings of the same size as the number of assets. These will be used as asset names, which you can then pass to AssetBundle.Load to load a specific asset. Use BuildAssetBundle to just use the asset's path names instead.
pathName The location where the compressed asset bundle will be written to.
assetBundleOptions Automatically include dependencies or always include complete assets instead of just the exact referenced objects.
targetPlatform The platform where the asset bundle will be used.
crc An optional output parameter used to get a CRC checksum for the generated AssetBundle. (Used to verify content when downloading AssetBundles using WWW.LoadFromCacheOrDownload.)

Description

Builds an asset bundle, with custom names for the assets.

The function returns a boolean value which is true if the build succeeded and false otherwise.
Note: Specifying strings will increase the size of the asset bundle. The Built-in AssetBundle data shown in the build log refers to the string size.

See Also: BuildAssetBundle, AssetBundle class, WWW.assetBundle.

Did you find this page useful? Please give it a rating: