git
/
wowui.git
/ blobdiff
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
570b5ba - Add Mekkatorque mythic auras
[wowui.git]
/
kehys
/
frame.lua
diff --git
a/kehys/frame.lua
b/kehys/frame.lua
index
4301178
..
1719b94
100644
(file)
--- a/
kehys/frame.lua
+++ b/
kehys/frame.lua
@@
-54,6
+54,7
@@
function addon.NewRaidFrame(parent, width, height, unit, attributes,
f.heal = {}; -- high healing auras
f.tankcd = {}; -- tank CD auras
f.stacks = {}; -- stacking aura tracking
f.heal = {}; -- high healing auras
f.tankcd = {}; -- tank CD auras
f.stacks = {}; -- stacking aura tracking
+ f.buff1 = {}; -- custom buff indicator 1
-- set up periodic updates
updaters[f] = function()
if f.updating then
-- set up periodic updates
updaters[f] = function()
if f.updating then
@@
-152,6
+153,12
@@
function addon.NewRaidFrame(parent, width, height, unit, attributes,
f.defensive:SetHeight(6);
f.defensive:SetColorTexture(1, 0.3, 0);
f.defensive:Hide();
f.defensive:SetHeight(6);
f.defensive:SetColorTexture(1, 0.3, 0);
f.defensive:Hide();
+ f.buffind1 = f:CreateTexture(nil, "OVERLAY");
+ f.buffind1:SetPoint("TOPRIGHT", f.background, "TOPRIGHT", -1, -1);
+ f.buffind1:SetWidth(6);
+ f.buffind1:SetHeight(6);
+ f.buffind1:SetColorTexture(0.8, 0.1, 0.1);
+ f.buffind1:Hide();
f.targeticon = f:CreateTexture(nil, "OVERLAY");
f.targeticon:SetPoint("CENTER", f, "TOP", 0, -1);
f.targeticon:SetWidth(12);
f.targeticon = f:CreateTexture(nil, "OVERLAY");
f.targeticon:SetPoint("CENTER", f, "TOP", 0, -1);
f.targeticon:SetWidth(12);