Do any of the Ace unit frame replacements provide reverse health bars?
I've been using ag_UnitFrames and manually editing the ag_UnitClass.lua file. Changing
local perc = currValue/maxValue * 100
to
local perctmp = currValue/maxValue * 100
local perc = 100 - perctmp
This solution kinda works but has some drawbacks. (ex. backward bar coloring: right before death you see a full green bar--not red)
Most the other healers I raid with have swapped to x-perl frames specifically for the reverse health bars. ag_UnitFrames lists reverse health as a low priority so I am ready to switch--just wanted to try to stick with ace based mods.
Reversing colours as well as bars would be cool. Also changing the colour to grey for dead/offline would be neat too (i.e. when the bar is filled to the max). (yes I know this is low priority, but thought I might get the idea out there).
Rollback Post to RevisionRollBack
To post a comment, please login or register a new account.
I've been using ag_UnitFrames and manually editing the ag_UnitClass.lua file. Changing
local perc = currValue/maxValue * 100
to
local perctmp = currValue/maxValue * 100
local perc = 100 - perctmp
This solution kinda works but has some drawbacks. (ex. backward bar coloring: right before death you see a full green bar--not red)
Most the other healers I raid with have swapped to x-perl frames specifically for the reverse health bars. ag_UnitFrames lists reverse health as a low priority so I am ready to switch--just wanted to try to stick with ace based mods.
Thanks.