14 lines
890 B
XML
14 lines
890 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ui:UXML xmlns:ui="UnityEngine.UIElements" xmlns:utk="UVC.UIToolkit">
|
|
<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:UTKIntegerField name="min-field" class="utk-property-item-view__field" />
|
|
<utk:UTKNumberStepper name="min-stepper" class="utk-property-item-view__stepper" />
|
|
<utk:UTKLabel text="~" class="utk-property-item-view__range-separator" />
|
|
<utk:UTKIntegerField name="max-field" class="utk-property-item-view__field" />
|
|
<utk:UTKNumberStepper name="max-stepper" class="utk-property-item-view__stepper" />
|
|
</ui:VisualElement>
|
|
</ui:VisualElement>
|
|
</ui:UXML>
|