Version: 5.3 (switch to 5.4b)
言語English
  • C#
  • JS

スクリプト言語

好きな言語を選択してください。選択した言語でスクリプトコードが表示されます。

EditorUtility.CollectDependencies

フィードバック

ありがとうございます

この度はドキュメントの品質向上のためにご意見・ご要望をお寄せいただき、誠にありがとうございます。頂いた内容をドキュメントチームで確認し、必要に応じて修正を致します。

閉じる

送信に失敗しました

なんらかのエラーが発生したため送信が出来ませんでした。しばらく経ってから<a>もう一度送信</a>してください。ドキュメントの品質向上のために時間を割いて頂き誠にありがとうございます。

閉じる

キャンセル

マニュアルに切り替える
public static function CollectDependencies(roots: Object[]): Object[];
public static Object[] CollectDependencies(Object[] roots);

パラメーター

説明

roots に依存するすべてのアセットを計算し、取得します


ゲームオブジェクトの非表示を設定する EditorWindow


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