Files
wow-weakauras/WA snippets/NameplateGlow.lua
2024-08-24 22:43:07 +02:00

9 lines
292 B
Lua

aura_env.glow = function(unit, s)
local nameplate = C_NamePlate.GetNamePlateForUnit(unit)
if nameplate and s == 1 then
ActionButton_ShowOverlayGlow(nameplate.UnitFrame.HealthBar)
else
ActionButton_HideOverlayGlow(nameplate.UnitFrame.HealthBar)
end
end