12345678910111213141516171819 |
- <?xml version="1.0" encoding="utf-8"?>
- <UXML xmlns:ui="UnityEngine.UIElements" xmlns:aui="UnityEditor.U2D.Animation">
- <aui:PoseToolbar name="PoseToolbar">
- <ui:PopupWindow name="PopupWindow" text="Pose">
- <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.">
- <ui:Image name="EditPoseImage" />
- <ui:Label text ="Preview Pose"/>
- </ui:Button>
- <ui:Button name="RestorePose" tooltip="Restores the actor to its default pose.">
- <ui:Image name="ResetPoseImage" />
- <ui:Label text ="Restore Pose"/>
- </ui:Button>
- <ui:Button name="PivotPose" tooltip="Sets the pivot point for the actor.">
- <ui:Image name="SetPivotImage" />
- <ui:Label text ="Set Pivot"/>
- </ui:Button>
- </ui:PopupWindow>
- </aui:PoseToolbar>
- </UXML>
|