2026-01-20 20:18:47 +09:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<UXML xmlns="UnityEngine.UIElements" xmlns:utk="UVC.UIToolkit">
|
|
|
|
|
<Style src="../UTKSampleCommon.uss" />
|
|
|
|
|
|
|
|
|
|
<VisualElement class="utk-sample-container">
|
|
|
|
|
<Label class="utk-sample-desc" text="접을 수 있는 섹션 컴포넌트" />
|
|
|
|
|
|
|
|
|
|
<VisualElement class="utk-sample-column">
|
2026-01-21 20:43:54 +09:00
|
|
|
<utk:UTKFoldout name="foldout-expanded" text="Expanded Section" value="true">
|
2026-01-20 20:18:47 +09:00
|
|
|
<Label text="Content inside the foldout" />
|
|
|
|
|
<Label text="More content here" />
|
|
|
|
|
</utk:UTKFoldout>
|
|
|
|
|
|
2026-01-21 20:43:54 +09:00
|
|
|
<utk:UTKFoldout name="foldout-collapsed" text="Collapsed Section" value="false">
|
2026-01-20 20:18:47 +09:00
|
|
|
<Label text="Hidden content" />
|
|
|
|
|
</utk:UTKFoldout>
|
|
|
|
|
</VisualElement>
|
2026-01-21 20:43:54 +09:00
|
|
|
|
|
|
|
|
<!-- Code Sample -->
|
|
|
|
|
<VisualElement class="utk-code-sample-container">
|
2026-01-23 19:04:12 +09:00
|
|
|
<utk:UTKCodeBlock name="code-csharp" title="C#" />
|
|
|
|
|
<utk:UTKCodeBlock name="code-uxml" title="UXML" />
|
2026-01-21 20:43:54 +09:00
|
|
|
</VisualElement>
|
2026-01-20 20:18:47 +09:00
|
|
|
</VisualElement>
|
|
|
|
|
</UXML>
|