15 lines
793 B
XML
15 lines
793 B
XML
<?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:PopupWindow>
|
|
</aui:PoseToolbar>
|
|
</UXML> |