Bez popisu
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.

BoneToolbar.uxml 897B

12345678910111213141516171819
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <UXML xmlns:ui="UnityEngine.UIElements" xmlns:aui="UnityEditor.U2D.Animation">
  3. <aui:BoneToolbar name="BoneToolbar">
  4. <ui:PopupWindow name="PopupWindow" text="Bones">
  5. <ui:Button name="EditJoints" tooltip="Edits an existing bone's position and rotation. ">
  6. <ui:Image name="EditJointsImage" />
  7. <ui:Label text ="Edit Bone"/>
  8. </ui:Button>
  9. <ui:Button name="CreateBone" tooltip="Creates new bones.">
  10. <ui:Image name="CreateBoneImage" />
  11. <ui:Label text ="Create Bone"/>
  12. </ui:Button>
  13. <ui:Button name="SplitBone" tooltip="Splits an existing bone at the point where you hover over.">
  14. <ui:Image name="SplitBoneImage" />
  15. <ui:Label text ="Split Bone"/>
  16. </ui:Button>
  17. </ui:PopupWindow>
  18. </aui:BoneToolbar>
  19. </UXML>