mirror of
https://github.com/Bluewhale1337/ElvUIModernized.git
synced 2026-07-27 08:24:44 +00:00
93f5762a44
update #56 fix #38 fix #69
28 lines
1008 B
Lua
28 lines
1008 B
Lua
local E, L, V, P, G = unpack(ElvUI); --Import: Engine, Locales, PrivateDB, ProfileDB, GlobalDB
|
|
local UF = E:GetModule("UnitFrames");
|
|
|
|
function UF:Construct_ReadyCheckIcon(frame)
|
|
local tex = frame.RaisedElementParent.TextureParent:CreateTexture(nil, "OVERLAY")
|
|
E:Size(tex, 12)
|
|
E:Point(tex, "BOTTOM", frame.Health, "BOTTOM", 0, 2)
|
|
|
|
return tex
|
|
end
|
|
|
|
function UF:Configure_ReadyCheckIcon(frame)
|
|
local ReadyCheckIndicator = frame.ReadyCheckIndicator
|
|
local db = frame.db
|
|
|
|
if db.readycheckIcon.enable then
|
|
if not frame:IsElementEnabled("ReadyCheckIndicator") then
|
|
frame:EnableElement("ReadyCheckIndicator")
|
|
end
|
|
|
|
local attachPoint = self:GetObjectAnchorPoint(frame, db.readycheckIcon.attachTo)
|
|
ReadyCheckIndicator:ClearAllPoints()
|
|
E:Point(ReadyCheckIndicator, db.readycheckIcon.position, attachPoint, db.readycheckIcon.position, db.readycheckIcon.xOffset, db.readycheckIcon.yOffset)
|
|
E:Size(ReadyCheckIndicator, db.readycheckIcon.size)
|
|
else
|
|
frame:DisableElement("ReadyCheckIndicator")
|
|
end
|
|
end |