暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

PoseToolbar.uxml 1001B

12345678910111213141516171819
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <UXML xmlns:ui="UnityEngine.UIElements" xmlns:aui="UnityEditor.U2D.Animation">
  3. <aui:PoseToolbar name="PoseToolbar">
  4. <ui:PopupWindow name="PopupWindow" text="Pose">
  5. <ui:Button name="PreviewPose" tooltip="Poses the actor to preview its current setup. These changes are temporary and do not affect the actor's original default pose.">
  6. <ui:Image name="EditPoseImage" />
  7. <ui:Label text ="Preview Pose"/>
  8. </ui:Button>
  9. <ui:Button name="RestorePose" tooltip="Restores the actor to its default pose.">
  10. <ui:Image name="ResetPoseImage" />
  11. <ui:Label text ="Restore Pose"/>
  12. </ui:Button>
  13. <ui:Button name="PivotPose" tooltip="Sets the pivot point for the actor.">
  14. <ui:Image name="SetPivotImage" />
  15. <ui:Label text ="Set Pivot"/>
  16. </ui:Button>
  17. </ui:PopupWindow>
  18. </aui:PoseToolbar>
  19. </UXML>