forked from kahluamods/konfersk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDebugUI.xml
31 lines (30 loc) · 1.16 KB
/
DebugUI.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<Ui xmlns="http://www.blizzard.com/wow/ui/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.blizzard.com/wow/ui/
..\FrameXML\UI.xsd">
<!-- This script turns on verbose messages in the FrameXML log -->
<Script>
FrameXML_Debug(1);
</Script>
<!-- This button allows you to hot reload the UI at runtime -->
<Button name="ReloadButton" parent="UIParent">
<Size>
<AbsDimension x="128" y="32"/>
</Size>
<Anchors>
<Anchor point="BOTTOMRIGHT">
<Offset>
<AbsDimension x="-192" y="64"/>
</Offset>
</Anchor>
</Anchors>
<Scripts>
<OnClick>
ReloadUI();
</OnClick>
</Scripts>
<NormalTexture inherits="DialogButtonNormalTexture"/>
<PushedTexture inherits="DialogButtonPushedTexture"/>
<HighlightTexture inherits="DialogButtonHighlightTexture"/>
<NormalText inherits="DialogButtonNormalText" text="Reload"/>
<HighlightText inherits="DialogButtonHighlightText" text="Reload"/>
</Button>
</Ui>