37 lines
1.5 KiB
Plaintext
37 lines
1.5 KiB
Plaintext
|
|
<ui:UXML xmlns:ui="UnityEngine.UIElements" xmlns:uie="UnityEditor.UIElements">
|
||
|
|
<!-- スタイルシートをリンクします -->
|
||
|
|
<ui:Style src="DataHubEditor.uss" />
|
||
|
|
|
||
|
|
<!-- ヘッダー部分 -->
|
||
|
|
<ui:VisualElement name="header" class="header">
|
||
|
|
<ui:Label text="DataHub" class="title" />
|
||
|
|
<uie:ToolbarMenu name="language-menu" />
|
||
|
|
</ui:VisualElement>
|
||
|
|
|
||
|
|
<!-- Inspector全体のコンテナ -->
|
||
|
|
<ui:VisualElement name="inspector-root" class="root-container">
|
||
|
|
|
||
|
|
<!-- セクション1: 警告メッセージ -->
|
||
|
|
<ui:Label name="warning-label" class="warning-label" />
|
||
|
|
|
||
|
|
<!-- 区切り線 -->
|
||
|
|
<ui:VisualElement name="separator" class="separator" />
|
||
|
|
|
||
|
|
<!-- セクション2: LocalizationTableのリスト -->
|
||
|
|
<ui:VisualElement name="tables-section" class="tables-section">
|
||
|
|
<ui:Label name="tables-title-label" class="title-label" />
|
||
|
|
<ui:VisualElement name="tables-list-container" class="list-container" />
|
||
|
|
</ui:VisualElement>
|
||
|
|
|
||
|
|
<!-- 区切り線 -->
|
||
|
|
<ui:VisualElement name="addressables-separator" class="separator" />
|
||
|
|
|
||
|
|
<!-- セクション3: Addressables Groupのリスト -->
|
||
|
|
<ui:VisualElement name="addressables-section" class="tables-section">
|
||
|
|
<ui:Label name="addressables-title-label" class="title-label" />
|
||
|
|
<ui:VisualElement name="addressables-list-container" class="list-container" />
|
||
|
|
</ui:VisualElement>
|
||
|
|
|
||
|
|
</ui:VisualElement>
|
||
|
|
</ui:UXML>
|