UTKPropertyTabListWindow 개발 중. UTKTabView Tab 버튼에 아이콘 설정 할 수 있게 기능 추가해야 함

This commit is contained in:
logonkhi
2026-02-20 19:56:23 +09:00
parent b64c3e10bc
commit 9d02afd8e8
13 changed files with 1290 additions and 33 deletions

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<UXML xmlns="UnityEngine.UIElements" xmlns:utk="UVC.UIToolkit">
<VisualElement name="window-root" class="utk-property-tab-window">
<VisualElement name="header" class="utk-property-tab-window__header">
<utk:UTKLabel name="title" class="utk-property-tab-window__title" />
<utk:UTKButton name="close-btn" class="utk-property-tab-window__close-btn" variant="Text" icon-only="true" />
</VisualElement>
<utk:UTKTabView name="tab-view" class="utk-property-tab-window__tab-view" />
<utk:UTKPropertyList name="content" class="utk-property-tab-window__content" />
</VisualElement>
</UXML>