Version: 2023.2
言語: 日本語
UXML 要素 Image
UXML 要素 IntegerField

UXML 要素 InspectorElement

An InspectorElement is a UI control that displays the properties of a SerializedObject in the Inspector window. You can use it to display the properties of a SerializedObject in a custom Editor window.

Create an InspectorElement

You can create an InspectorElement with UXML or C#. The following C# example creates an InspectorElement and binds it to a SerializedObject:

using UnityEditor.UIElements;
...
var inspectorElement = new InspectorElement();
var serializedObject = new SerializedObject(myObject);
inspectorElement.Bind(serializedObject);

C# の基本クラスと名前空間

C#クラス: InspectorElement
名前空間: UnityEditor.UIElements
基本クラス: BindableElement

継承された UXML 属性

この要素は基本クラスから以下の属性を継承します。

名前 説明
binding-path string バインドされるべきターゲットプロパティのパス。
focusable boolean 要素がフォーカス可能である場合は true。
tabindex int フォーカスリング内でフォーカス可能なものをソートするために使用される整数。0 以上であることが必要です。

この要素は、VisualElement から以下の属性も継承します。

名前 説明
content-container string 子要素はそれに追加されますが、通常は要素自体と同じです。
data-source Object Assigns a data source to this VisualElement which overrides any inherited data source. This data source is inherited by all children.
data-source-path string Path from the data source to the value.
name string この VisualElement の名前。

このプロパティを使用して、特定の要素を対象とする USS セレクターを記述します。要素には一意の名前を付けるのが標準的です。
picking-mode UIElements.PickingMode mouseEvents または IPanel.Pick クエリの間にこの要素を選択 (ピック) できるかどうかを決定します。
style string この要素のスタイルオブジェクトへの参照。

C# でこのオブジェクトに書き込まれた USS ファイルまたはインラインスタイルから計算されたデータが含まれます。
toolbar string ユーザーが要素をマウスオーバーした後、わずかな時間、情報ボックス内に表示するテキスト。これはエディター UI でのみサポートされます。
usage-hints UIElements.UsageHints VisualElement の高レベルの使用パターンを指定するヒント値の組み合わせ。このプロパティは、VisualElement がまだ Panel の一部でない場合にのみ設定できます。Panel の一部になると、このプロパティは事実上読み取り専用となり、変更しようとすると例外がスローされます。適切な UsageHints を指定することで、予想される使用パターンに基づいて、特定の操作をどのように処理するか、または高速化するかについて、システムがより適切な判断を下すようになります。これらのヒントは動作や視覚的な結果には影響しませんが、パネルとその中の要素の全体的なパフォーマンスにのみ影響することに注意してください。常に適切なUsageHints を指定することを考慮することをお勧めしますが、特定の条件下 (例えば、ターゲットプラットフォームのハードウェア制限など) では、いくつかの UsageHints が内部的に無視される可能性があることに留意してください。
view-data-key string Used for view data persistence, such as tree expanded states, scroll position, or zoom level.

This key is used to save and load the view data from the view data store. If you don’t set this key, the persistence is disabled for the associated VisualElement. For more information, refer to View data persistence.

USS クラス

以下の表は、すべての C# パブリックプロパティ名と、それに関連する USS セレクターのリストです。

C# プロパティ USS セレクター 説明
ussClassName .unity-inspector-element この型の要素の USS クラス名。
customInspectorUssClassName .unity-inspector-element__custom-inspector-container このタイプの要素のカスタムインスペクター要素の USS クラス名。
iMGUIContainerUssClassName .unity-inspector-element__imgui-container この型の要素の IMGUI コンテナの USS クラス名。
iMGUIInspectorVariantUssClassName .unity-inspector-element--imgui IMGUI インスペクターモードで表示される場合、この型の要素の USS クラス名。
uIEInspectorVariantUssClassName .unity-inspector-element--uie UIElements インスペクターモードで表示される、この型の要素の USS クラス名。
noInspectorFoundVariantUssClassName .unity-inspector-element--no-inspector-found インスペクターが見つからない場合、この型の要素の USS クラス名。
uIECustomVariantUssClassName .unity-inspector-element--uie-custom UIElements カスタムモードで表示される場合、この型の要素の USS クラス名。
iMGUICustomVariantUssClassName .unity-inspector-element--imgui-custom IMGUI のカスタムモードで表示される場合、この型の要素の USS クラス名。
iMGUIDefaultVariantUssClassName .unity-inspector-element--imgui-default IMGUI のデフォルトモードで表示される場合の、この型の要素の USS クラス名。
uIEDefaultVariantUssClassName .unity-inspector-element--uie-default UIElements のデフォルトモードで表示される場合の、この型の要素の USS クラス名。
debugVariantUssClassName .unity-inspector-element--debug このタイプの要素がデバッグ USS モードで表示されるときの USS クラス名。
debugInternalVariantUssClassName .unity-inspector-element--debug-internal この型の要素がデバッグ内部モードで表示される場合の USS クラス名。
disabledUssClassName .unity-disabled ローカルで無効にされた要素の USS クラス名。

また、Inspector や UI Toolkit Debugger の Matching Selectors セクション を使用して、どの USS セレクターが VisualElementのコンポーネントに影響するかを、階層のすべてのレベルで確認することもできます。

その他の参考資料

UXML 要素 Image
UXML 要素 IntegerField