PastePanel.uxml 1.5 KB

1234567891011121314151617181920212223242526272829
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <UXML xmlns:ui="UnityEngine.UIElements" xmlns:eui="UnityEditor.UIElements" xmlns:aui="UnityEditor.U2D.Animation">
  3. <aui:PastePanel name="PastePanel" picking-mode="Ignore">
  4. <ui:PopupWindow text="Paste">
  5. <ui:VisualElement class="form-row">
  6. <ui:Label name="BonesLabel" tooltip="Paste copied Bone data" text="Bones" />
  7. <ui:Toggle name="BonesField" class="form-editor" value="true" />
  8. </ui:VisualElement>
  9. <ui:VisualElement class="form-row">
  10. <ui:Label name="MeshLabel" tooltip="Paste copied Mesh data" text="Mesh" />
  11. <ui:Toggle name="MeshField" class="form-editor" value="true" />
  12. </ui:VisualElement>
  13. <ui:VisualElement class="form-row">
  14. <ui:Label name="FlipXLabel" tooltip="Flips all pasted data horizontally" text="Flip X" />
  15. <ui:Toggle name="FlipXField" class="form-editor" value="false" />
  16. </ui:VisualElement>
  17. <ui:VisualElement class="form-row">
  18. <ui:Label name="FlipYLabel" tooltip="Flips all pasted data vertically" text="Flip Y" />
  19. <ui:Toggle name="FlipYField" class="form-editor" value="false" />
  20. </ui:VisualElement>
  21. <ui:VisualElement name="Content">
  22. <ui:VisualElement class="form-row-space" />
  23. <ui:VisualElement class="form-row">
  24. <ui:Button name="PasteButton" text="Paste" tooltip="Paste Selected Animation Data"/>
  25. </ui:VisualElement>
  26. </ui:VisualElement>
  27. </ui:PopupWindow>
  28. </aui:PastePanel>
  29. </UXML>