版本:Unity 6(6000.0)
语言英语
  • C#

EditorUtility.CollectDependencies

提出修改建议

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法接受所有的投稿,但我们确实会阅读来自分用户的每一项修改建议,并在适用时进行更新。

关闭

投稿失败

由于某些原因,您提出的修改建议无法提交。请在几分钟后<a>再次尝试</a>。感谢您花时间帮助我们提高 Unity 文档的质量。

关闭

取消

声明

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

说明

计算并返回列在 roots 中的资源所依赖的所有资源的列表。


显示下一个示例的编辑器窗口。

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(); } }