-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWorldMap.xml
31 lines (29 loc) · 952 Bytes
/
WorldMap.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 xsi:schemaLocation="http://www.blizzard.com/wow/ui/">;
<!-- World Map Display Templates -->
<Frame name="VadeMecumrMapOverlayTemplate" hidden="false" virtual="true" setAllPoints="true">
<Scripts>
<OnLoad>
this:SetFrameLevel(this:GetParent():GetFrameLevel())
self:SetWidth(WorldMapButton:GetWidth())
self:SetHeight(WorldMapButton:GetHeight())
</OnLoad>
<OnHide>
-- print("HIDE")
</OnHide>
</Scripts>
</Frame>
<Button name="VadeMecumrMarkerTemplate" hidden="true" virtual="true">
<Anchors>
<Anchor point="CENTER"/>
</Anchors>
<Scripts>
<OnLoad>
this:SetFrameLevel(this:GetParent():GetFrameLevel() + 1)
</OnLoad>
</Scripts>
<NormalTexture file="Interface\Addons\VadeMecum\images\star"/>
</Button>
<!-- Parent Frame for all World Map Note Objects -->
<Frame hidden="false" name="VadeMecumMapOverlayParent" inherits="VadeMecumrMapOverlayTemplate" parent="WorldMapButton">
</Frame>
</Ui>