Files
Andrew6810 8ad40722a0 Fixes Enhanced character frame
Update nameplate coloring.
Fix world map blips
2022-10-30 16:41:03 -07:00

31 lines
849 B
Lua

local E, L, V, P, G = unpack(ElvUI)
local DT = E:GetModule("DataTexts")
local EE = E:GetModule("ElvUI_Enhanced")
local select = select
local join = string.join
local UnitStat = UnitStat
local STAMINA_COLON = STAMINA_COLON
local SPELL_STAT3_NAME = SPELL_STAT3_NAME
local displayNumberString = ""
local lastPanel
local function OnEvent(self)
self.text:SetFormattedText(displayNumberString, STAMINA_COLON, select(2, UnitStat("player", 3)))
lastPanel = self
end
local function ValueColorUpdate(hex)
displayNumberString = join("", "%s ", hex, "%.f|r")
if lastPanel ~= nil then
OnEvent(lastPanel)
end
end
E.valueColorUpdateFuncs[ValueColorUpdate] = true
DT:RegisterDatatext("Stamina", {"UNIT_STATS", "UNIT_AURA", "ACTIVE_TALENT_GROUP_CHANGED", "PLAYER_TALENT_UPDATE"}, OnEvent, nil, nil, nil, nil, EE:ColorizeSettingName(SPELL_STAT3_NAME))