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

Script language

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

EditorUtility.CollectDependencies

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

public static function CollectDependencies(roots: Object[]): Object[];
public static Object[] CollectDependencies(Object[] roots);

Description

Calculates and returns a list of all assets the assets listed in roots depend on.


Editor window that shows the next example.

#pragma strict
public class CollectDependenciesExample extends EditorWindow {
	static var obj: GameObject = null;
	@MenuItem("Example/Collect Dependencies")
	static function Init() {
		// Get existing open window or if none, make a new one:
		var window: CollectDependenciesExample = CollectDependenciesExampleEditorWindow.GetWindow(CollectDependenciesExample);
		window.Show();
	}
	function OnGUI() {
		obj = EditorGUI.ObjectField(new Rect(3, 3, position.width - 6, 20), "Find Dependency", obj, GameObject) as GameObject;
		if (obj) {
			var roots: Object[] = [obj];
			if (GUI.Button(new Rect(3, 25, position.width - 6, 20), "Check Dependencies"))
				Selection.objects = EditorUtility.CollectDependencies(roots);
		}
		else
			EditorGUI.LabelField(new Rect(3, 25, position.width - 6, 20), "Missing:", "Select an object first");
	}
	function OnInspectorUpdate() {
		Repaint();
	}
}
using UnityEngine;
using UnityEditor;

public class CollectDependenciesExample : EditorWindow { static GameObject obj = null;

[MenuItem("Example/Collect Dependencies")] static void Init() { // Get existing open window or if none, make a new one: CollectDependenciesExample window = (CollectDependenciesExample)EditorWindow.GetWindow(typeof(CollectDependenciesExample)); window.Show(); }

void OnGUI() { obj = EditorGUI.ObjectField(new Rect(3, 3, position.width - 6, 20), "Find Dependency", obj, typeof(GameObject)) as GameObject;

if (obj) { Object[] roots = new Object[] { obj };

if (GUI.Button(new Rect(3, 25, position.width - 6, 20), "Check Dependencies")) Selection.objects = EditorUtility.CollectDependencies(roots); } else EditorGUI.LabelField(new Rect(3, 25, position.width - 6, 20), "Missing:", "Select an object first"); }

void OnInspectorUpdate() { Repaint(); } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961