1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【Unity】複数Inspectorウィンドウのスクロールを同期するエディター拡張

Last updated at Posted at 2018-07-11

はじめに

Inspectorウィンドウのスクロール位置を変更した時、
他のウィンドウも同じ位置までスクロールさせるエディター拡張を作ってみました。

ソースコード

5.gif

Unity2018.2.0f2で動作確認済みです

InspectorウィンドウのカスタマイズTips

開いている全てのインスペクタを取得する

// InspectorウィンドウのTypeを取得
s_TypeInspectorWindow = Assembly.Load("UnityEditor.dll").GetType("UnityEditor.InspectorWindow");

// 全てのInspectorウィンドウを取得
return (EditorWindow[])Resources.FindObjectsOfTypeAll(s_TypeInspectorWindow);

Inspectorウィンドウの内部実装を見る方法

Unityテクノロジーズが公開しているGitHubからInspectorウィンドウのソースコードが確認できます。

Inspectorウィンドウはクラスそのものが非公開となっているため、情報を取得したい場合はリフレクション経由で呼び出すことになります。

インスペクタが表示しているオブジェクトの取得

InspectorWindowクラスの**GetInspectedObject()**メソッドを実行すると、Inspectorウィンドウが表示しているオブジェクトを取得できます。

var k_GetFlags = BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance;

// GetInspectedObjectメソッドの取得
var method = s_TypeInspectorWindow.GetMethod("GetInspectedObject", k_GetFlags);

// メソッド実行してInspectorが表示するオブジェクトを取得
return method.Invoke(inspector, null); 
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?