You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
1.3 KiB
25 lines
1.3 KiB
<UXML
|
|
xmlns:ui="UnityEngine.UIElements"
|
|
xmlns:uie="UnityEditor.UIElements"
|
|
xmlns:gv="UnityEditor.Experimental.GraphView">
|
|
<ui:VisualElement name="swatches">
|
|
<ui:Button name="swatch1" class="swatch" tooltip="Change the sticky note color to yellow" />
|
|
<ui:Button name="swatch2" class="swatch" tooltip="Change the sticky note color to blue" />
|
|
<ui:Button name="swatch3" class="swatch" tooltip="Change the sticky note color to red" />
|
|
<!--<ui:DropdownField name="moreColors" />-->
|
|
<ui:DropdownField name="fontSize" class="text-font" tooltip="Change the sticky note font size" />
|
|
<ui:Button name="fitToText" class="text-modifier" tooltip="Adjust the sticky note size to its content" />
|
|
</ui:VisualElement>
|
|
<ui:VisualElement name="node-border" pickingMode="Ignore" >
|
|
<ui:VisualElement name="title-bar">
|
|
<ui:Label name="title" />
|
|
<ui:TextField name="title-field" />
|
|
</ui:VisualElement>
|
|
<ui:VisualElement name="content-holder">
|
|
<ui:Label name="contents" />
|
|
<ui:TextField name="contents-field" />
|
|
</ui:VisualElement>
|
|
</ui:VisualElement>
|
|
<ui:VisualElement name="selection-border" pickingMode="Ignore" />
|
|
<gv:ResizableElement pickingMode="Ignore" />
|
|
</UXML>
|