(The skewed [ ]'s represent vertical power/health bars)
What's the best way to arrange my power/health text like that?
Try something like this.
local s = Status(unit)
if s then
return s
end
local curp,maxp,curh,maxh = Power(unit),MaxPower(unit),HP(unit),MaxHP(unit)
return "%s/%s\n%s/%s", curp,maxp,Short(curh),Short(maxh)
I've been working on this layout for my unit frames for a day or three now and finally got it about where I want it. Player is on the bottom left, player pet is on the bottom right, target (which I will be changing a bit soon) is on top.
0
Try something like this.
I used something similar to get this.
0