comparison WorldQuests.xml @ 67:96183f981acb

Update for Legion Patch 7.2 - Pins for quests detected from the flight map should properly update as needed. - Fixed dropdown menu configurations not getting applied. - Added a toggle button to the world map display that performs the same function as the 'Enable' option in the dropdown menu. - Rewrote the majority of display update handlers for a significant performance improvements while interacting with the world map. - AP token info should now reflect artifact knowledge changes.
author Nenue
date Sat, 01 Apr 2017 08:17:30 -0400
parents be4db60219ca
children 78d78dc77822
comparison
equal deleted inserted replaced
66:e43e10c5576b 67:96183f981acb
2 ..\FrameXML\UI.xsd"> 2 ..\FrameXML\UI.xsd">
3 <Script file="WorldQuests.lua" /> 3 <Script file="WorldQuests.lua" />
4 4
5 5
6 <Frame name="$parentQuests" mixin="WorldPlanQuestsMixin" parent="WorldPlan"> 6 <Frame name="$parentQuests" mixin="WorldPlanQuestsMixin" parent="WorldPlan">
7
7 <Scripts> 8 <Scripts>
8 <OnLoad method="OnLoad" /> 9 <OnLoad method="OnLoad" />
9 <OnEvent method="OnEvent" /> 10 <OnEvent method="OnEvent" />
11 <OnUpdate method="OnUpdate" />
10 <OnShow method="OnShow" /> 12 <OnShow method="OnShow" />
11 </Scripts> 13 </Scripts>
14
15 <Frames>
16 <CheckButton name="$parentToggle" parentKey="Toggle" >
17 <Size x="20" y="20" />
18 <Anchors>
19 <Anchor point="TOPLEFT" relativePoint="TOPLEFT" x="2" y="-6" />
20 </Anchors>
21 <Layers>
22 <Layer level="BACKGROUND">
23 <Texture setAllPoints="false">
24 <Anchors>
25 <Anchor point="TOPRIGHT" x="-1" y="-1" />
26 <Anchor point="BOTTOMLEFT" x="1" y="1" />
27 </Anchors>
28 <Color a="1" r="0" g="0" b="0" />
29 </Texture>
30 </Layer>
31 </Layers>
32
33 <ButtonText inherits="GameFontNormal" text="World Quests">
34 <Anchors>
35 <Anchor point="LEFT" relativePoint="RIGHT" x="3" />
36 </Anchors>
37 </ButtonText>
38 <NormalTexture setAllPoints="true">
39 <Color a=".25" r="0" g="0" b="0" />
40 </NormalTexture>
41 <CheckedTexture setAllPoints="false">
42 <Anchors>
43 <Anchor point="TOPRIGHT" x="-1" y="-1" />
44 <Anchor point="BOTTOMLEFT" x="1" y="1" />
45 </Anchors>
46 <Color a=".75" r="1" g="1" b="1" />
47 </CheckedTexture>
48 </CheckButton>
49 </Frames>
12 </Frame> 50 </Frame>
13 51
14 </Ui> 52 </Ui>