Mercurial > wow > devian
comparison Dock.xml @ 100:790dca545f1d v3.0
- Configuration structure overheal; clearing 'Devian.lua' from SaveVariables will be necessary
- Removed dependence on embedded libraries.
- Console/dock frames are now implemented as XML mixin structures
- Console dropdown menu option to 'Pin' frames
- Hold SHIFT while clicking dock buttons will cause all but that tab to be closed
author | Nenue |
---|---|
date | Tue, 17 Jan 2017 14:25:18 -0500 |
parents | 7d94df3804a7 |
children | 8dc0c1917890 |
comparison
equal
deleted
inserted
replaced
99:7d94df3804a7 | 100:790dca545f1d |
---|---|
41 | 41 |
42 <Scripts> | 42 <Scripts> |
43 <OnShow method="OnShow" /> | 43 <OnShow method="OnShow" /> |
44 <OnEnter method="OnEnter" /> | 44 <OnEnter method="OnEnter" /> |
45 <OnMouseDown method="OnMouseDown" /> | 45 <OnMouseDown method="OnMouseDown" /> |
46 <OnClick method="Select" /> | |
47 </Scripts> | 46 </Scripts> |
48 <Layers> | 47 <Layers> |
49 <Layer level="BACKGROUND"> | 48 <Layer level="BACKGROUND"> |
50 <Texture parentKey="Background" setAllPoints="true"> | 49 <Texture parentKey="Background" setAllPoints="true"> |
51 <Color a="0.5" r="0" g="0" b="0" /> | 50 <Color a="0.5" r="0" g="0" b="0" /> |
51 </Texture> | |
52 </Layer> | |
53 <Layer level="BORDER"> | |
54 <Texture parentKey="BackgroundGlow" setAllPoints="true" hidden="true"> | |
55 <Color a="1" r="0" g="1" b="0.5" /> | |
52 </Texture> | 56 </Texture> |
53 </Layer> | 57 </Layer> |
54 <Layer level="OVERLAY"> | 58 <Layer level="OVERLAY"> |
55 <Texture parentKey="Stripe"> | 59 <Texture parentKey="Stripe"> |
56 <Anchors> | 60 <Anchors> |
78 <Offset x="0" y="-2" /> | 82 <Offset x="0" y="-2" /> |
79 </Shadow> | 83 </Shadow> |
80 </FontString> | 84 </FontString> |
81 </Layer> | 85 </Layer> |
82 </Layers> | 86 </Layers> |
83 <Animations> | |
84 <AnimationGroup parentKey="pulse" looping="BOUNCE" setToFinalAlpha="false"> | |
85 <Alpha fromAlpha=".5" toAlpha="1" duration="0.4" endDelay="0.6" order="1" childKey="name" /> | |
86 | |
87 </AnimationGroup> | |
88 </Animations> | |
89 </Frame> | 87 </Frame> |
90 </Frames> | 88 </Frames> |
89 <Animations> | |
90 <AnimationGroup parentKey="pulse" looping="REPEAT" setToFinalAlpha="true"> | |
91 <Alpha fromAlpha=".15" toAlpha=".65" duration="0.4" order="1" childKey="BackgroundGlow" /> | |
92 <Alpha fromAlpha=".65" toAlpha=".15" duration="0.4" order="2" childKey="BackgroundGlow" /> | |
93 <Alpha fromAlpha=".15" toAlpha=".15" duration="0.6" order="3" childKey="BackgroundGlow" /> | |
94 <Scripts> | |
95 <OnPlay> | |
96 self:GetParent().BackgroundGlow:SetAlpha(.65) | |
97 self:GetParent().BackgroundGlow:Show() | |
98 </OnPlay> | |
99 <OnStop> | |
100 self:GetParent().BackgroundGlow:Hide() | |
101 </OnStop> | |
102 <OnFinished> | |
103 self:GetParent().BackgroundGlow:Hide() | |
104 </OnFinished> | |
105 </Scripts> | |
106 </AnimationGroup> | |
107 </Animations> | |
91 </Button> | 108 </Button> |
92 | 109 |
93 </Ui> | 110 </Ui> |