Version: 2019.2
public static string[] GetDependencies (string pathName);
public static string[] GetDependencies (string pathName, bool recursive);

パラメーター

pathName依存関係があるアセットへのパス。
recursivefalse の場合、入力値と直接の依存関係があるアセットしか返しません。 true の場合、入力値と間接的な依存関係があるものもすべて含みます。デフォルトは true です。

戻り値

string[] 依存関係があるアセットすべてのパス。

説明

pathName で指定したアセットと依存関係にあるすべてのアセットを取得します

If recursive is true, the list returned will also include the input path itself. Note that this function returns all assets that are referenced by the input asset; these references are not necessarily required during the build process.


public static string[] GetDependencies (string[] pathNames);
public static string[] GetDependencies (string[] pathNames, bool recursive);

パラメーター

pathNames依存関係があるアセットへのパス。
recursivefalse の場合、入力値と直接の依存関係があるアセットしか返しません。 true の場合、入力値と間接的な依存関係があるものもすべて含みます。デフォルトは true です。

戻り値

string[] 依存関係があるアセットすべてのパス。

説明

pathNames で指定したアセットと依存関係にあるすべてのアセットを取得します

If recursive is true, the list returned will also include the input paths themselves. Note that this function returns all assets that are referenced by the input asset; these references are not necessarily required during the build process.