Files
XRLib/Assets/Resources/UIToolkit/Property/Views/UTKFloatRangePropertyItemView.uxml
2026-02-10 20:48:49 +09:00

13 lines
875 B
Plaintext

<ui:UXML xmlns:ui="UnityEngine.UIElements" xmlns:utk="UVC.UIToolkit" editor-extension-mode="False">
<ui:VisualElement name="container" class="utk-property-item-view-container">
<utk:UTKLabel name="label" text="Label" class="utk-property-item-view__label" />
<ui:VisualElement name="value-container" class="utk-property-item-view__value">
<utk:UTKFloatField name="min-field" class="utk-property-item-view__field" />
<utk:UTKFloatStepper name="min-stepper" class="utk-property-item-view__stepper" />
<utk:UTKLabel text="~" class="utk-property-item-view__range-separator" />
<utk:UTKFloatField name="max-field" class="utk-property-item-view__field" />
<utk:UTKFloatStepper name="max-stepper" class="utk-property-item-view__stepper" />
</ui:VisualElement>
</ui:VisualElement>
</ui:UXML>