2025-10-11 15:08:16 +08:00
|
|
|
<ui:UXML xmlns:ui="UnityEngine.UIElements" xmlns:uie="UnityEditor.UIElements" editor-extension-mode="True">
|
2025-12-08 08:38:32 +08:00
|
|
|
<ui:VisualElement name="root-container" class="root-layout">
|
2026-01-23 14:48:03 +08:00
|
|
|
<ui:VisualElement name="header-bar" class="header-bar">
|
|
|
|
|
<ui:Label text="MCP For Unity" name="title" class="header-title" />
|
|
|
|
|
<ui:Label text="v9.1.0" name="version-label" class="header-version" />
|
|
|
|
|
</ui:VisualElement>
|
|
|
|
|
<ui:VisualElement name="update-notification" class="update-notification">
|
|
|
|
|
<ui:Label name="update-notification-text" class="update-notification-text" />
|
|
|
|
|
</ui:VisualElement>
|
2025-12-08 08:38:32 +08:00
|
|
|
<uie:Toolbar name="tab-toolbar" class="tab-toolbar">
|
2026-01-23 14:48:03 +08:00
|
|
|
<uie:ToolbarToggle name="clients-tab" text="Connect" value="true" />
|
2025-12-08 08:38:32 +08:00
|
|
|
<uie:ToolbarToggle name="tools-tab" text="Tools" />
|
2026-01-23 14:48:03 +08:00
|
|
|
<uie:ToolbarToggle name="validation-tab" text="Scripts" />
|
|
|
|
|
<uie:ToolbarToggle name="advanced-tab" text="Advanced" />
|
2025-12-08 08:38:32 +08:00
|
|
|
</uie:Toolbar>
|
2026-01-23 14:48:03 +08:00
|
|
|
<ui:ScrollView name="clients-panel" class="panel-scroll" style="flex-grow: 1;">
|
|
|
|
|
<ui:VisualElement name="clients-container" class="section-stack" />
|
|
|
|
|
</ui:ScrollView>
|
|
|
|
|
<ui:ScrollView name="validation-panel" class="panel-scroll hidden" style="flex-grow: 1;">
|
|
|
|
|
<ui:VisualElement name="validation-container" class="section-stack" />
|
|
|
|
|
</ui:ScrollView>
|
|
|
|
|
<ui:ScrollView name="advanced-panel" class="panel-scroll hidden" style="flex-grow: 1;">
|
|
|
|
|
<ui:VisualElement name="advanced-container" class="section-stack" />
|
2025-12-08 08:38:32 +08:00
|
|
|
</ui:ScrollView>
|
|
|
|
|
<ui:ScrollView name="tools-panel" class="panel-scroll hidden" style="flex-grow: 1;">
|
|
|
|
|
<ui:VisualElement name="tools-container" class="section-stack" />
|
|
|
|
|
</ui:ScrollView>
|
|
|
|
|
</ui:VisualElement>
|
2025-10-11 15:08:16 +08:00
|
|
|
</ui:UXML>
|