WeightToolbar.uxml 1.2 KB

1234567891011121314151617181920212223
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <UXML xmlns:ui="UnityEngine.UIElements" xmlns:aui="UnityEditor.U2D.Animation">
  3. <aui:WeightToolbar name="WeightToolbar">
  4. <ui:PopupWindow name="PopupWindow" text="Weights">
  5. <ui:Button name="AutoGenerateWeight" tooltip="Wizard to generate, normalize and clear weights">
  6. <ui:Image name="AutoGenerateWeightImage" />
  7. <ui:Label text ="Auto Weights"/>
  8. </ui:Button>
  9. <ui:Button name="WeightPainterSlider" tooltip="Allow editing of skin weight using a slider tool">
  10. <ui:Image name="WeightPainterSliderImage" />
  11. <ui:Label text ="Weight Slider"/>
  12. </ui:Button>
  13. <ui:Button name="WeightPainterBrush" tooltip="Allow editing of skin weight using a brush tool">
  14. <ui:Image name="WeightPainterBrushImage" />
  15. <ui:Label text ="Weight Brush"/>
  16. </ui:Button>
  17. <ui:Button name="BoneInfluenceWidget" tooltip="Edit bones influence on a Sprite">
  18. <ui:Image name="BoneInfluenceWidgetImage" />
  19. <ui:Label text ="Bone Influence"/>
  20. </ui:Button>
  21. </ui:PopupWindow>
  22. </aui:WeightToolbar>
  23. </UXML>