Version: 5.4
Method group is Obsolete
BuildAssetBundleExplicitAssetNames has been made obsolete. Please use the new AssetBundle build system introduced in 5.0 and check BuildAssetBundles documentation for details.

BuildPipeline.BuildAssetBundleExplicitAssetNames

マニュアルに切り替える
public static bool BuildAssetBundleExplicitAssetNames (Object[] assets, string[] assetNames, string pathName, BuildAssetBundleOptions assetBundleOptions);
public static bool BuildAssetBundleExplicitAssetNames (Object[] assets, string[] assetNames, string pathName, out uint crc, BuildAssetBundleOptions assetBundleOptions);
public static bool BuildAssetBundleExplicitAssetNames (Object[] assets, string[] assetNames, string pathName);
public static bool BuildAssetBundleExplicitAssetNames (Object[] assets, string[] assetNames, string pathName, out uint crc);
public static bool BuildAssetBundleExplicitAssetNames (Object[] assets, string[] assetNames, string pathName, BuildAssetBundleOptions assetBundleOptions, BuildTarget targetPlatform);
public static bool BuildAssetBundleExplicitAssetNames (Object[] assets, string[] assetNames, string pathName, out uint crc, BuildAssetBundleOptions assetBundleOptions, BuildTarget targetPlatform);

パラメーター

assets assets のコレクションを含むアセットバンドルを作成します。アセットバンドルはプロジェクトフォルダーにある任意のアセットを含めることができます。
assetNames アセット数と同じサイズの文字列の配列。 アセット名 (assetName) として使用され、それは AssetBundle.Load に渡され、特定のアセットを読み込むために利用されます。アセットのパス名 (pathName) だけを使用する場合は、代わりに BuildAssetBundle を使用します。
pathName 圧縮されたアセットバンドルが書き込まれる場所
assetBundleOptions 自動的に依存関係を含めたり、ただ参照されたオブジェクトのみだけでなく常に関係するすべてのアセットを含める設定ができます。
targetPlatform アセットバンドルを使用するプラットフォーム
crc オプションである crc 出力引数により生成されたアセットバンドルに対して CRC チェックサムを取得できます。これは WWW.LoadFromCacheOrDownload を使用してアセットバンドルをダウンロードするときにコンテンツを確認できます。

説明

アセットに自由なアセット名を付け、アセットバンドルを作成します

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.

関連項目: BuildAssetBundleAssetBundle クラス、WWW.assetBundle.