Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

AssetDatabase.GetDependencies

Sugiere un cambio

¡Éxito!

Gracias por ayudarnos a mejorar la calidad de la documentación de Unity. A pesar de que no podemos aceptar todas las sugerencias, leemos cada cambio propuesto por nuestros usuarios y actualizaremos los que sean aplicables.

Cerrar

No se puedo enviar

Por alguna razón su cambio sugerido no pudo ser enviado. Por favor <a>intente nuevamente</a> en unos minutos. Gracias por tomarse un tiempo para ayudarnos a mejorar la calidad de la documentación de Unity.

Cerrar

Cancelar

Cambiar al Manual
public static function GetDependencies(pathName: string): string[];
public static string[] GetDependencies(string pathName);
public static function GetDependencies(pathName: string, recursive: bool): string[];
public static string[] GetDependencies(string pathName, bool recursive);

Parámetros

pathName The path to the asset for which dependencies are required.
recursive If false, return only assets which are direct dependencies of the input; if true, include all indirect dependencies of the input. Defaults to true.

Valor de retorno

string[] The paths of all assets that the input depends on.

Descripción

Given a pathName, returns the list of all assets that it depends on.

If recursive is true, the list returned will also include the input path itself.


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

Parámetros

pathNames The path to the assets for which dependencies are required.
recursive If false, return only assets which are direct dependencies of the input; if true, include all indirect dependencies of the input. Defaults to true.

Valor de retorno

string[] The paths of all assets that the input depends on.

Descripción

Given an array of pathNames, returns the list of all assets that the input depend on.

If recursive is true, the list returned will also include the input paths themselves.