vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1  
2 <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/
3 ..\FrameXML\UI.xsd">
4  
5 <Script file="Nightfall.lua" />
6  
7 <Frame name="NightfallEffectTemplate" hidden="true" setAllPoints="true" virtual="true">
8 <Scripts>
9 <OnLoad>
10 this:SetAlpha(0)
11 </OnLoad>
12 </Scripts>
13 </Frame>
14  
15 <Frame name="NightfallFrame" parent="WorldFrame" setAllPoints="true">
16 <Frames>
17 <Frame name="$parentEffect1" inherits="NightfallEffectTemplate">
18 <Layers>
19 <Layer level="BACKGROUND">
20 <Texture name="$parentTexture" file="Interface\Addons\TNE_Nightfall\texture\flash1.tga" alphaMode="ADD" />
21 </Layer>
22 </Layers>
23 </Frame>
24 <Frame name="$parentEffect2" inherits="NightfallEffectTemplate">
25 <Layers>
26 <Layer level="BACKGROUND">
27 <Texture name="$parentTexture" file="Interface\Addons\TNE_Nightfall\texture\flash2.tga" alphaMode="ADD" />
28 </Layer>
29 </Layers>
30 </Frame>
31 </Frames>
32  
33 <Scripts>
34 <OnLoad>
35 TNE_Nightfall_OnLoad()
36 this:RegisterEvent("VARIABLES_LOADED")
37 </OnLoad>
38 <OnEvent>
39 if (event == "VARIABLES_LOADED") then
40 TNE_Nightfall_ApplySettings()
41 else
42 TNE_Nightfall_OnEvent(event)
43 end
44 </OnEvent>
45 </Scripts>
46 </Frame>
47  
48 </Ui>