zorker / rothui

Just a bunch of stuff I wrote for World of Warcraft
MIT License
105 stars 56 forks source link

aura desaturation attribute #33

Closed zorker closed 8 years ago

zorker commented 8 years ago

Check if aura icon desaturation is possible or if I want to do that via custom filter.

zorker commented 8 years ago

Tested. The customfilter is fine for doing this.

--custom filter
local function CustomFilter(buttons, unit, button)
  if button.isPlayer then
    button.icon:SetDesaturated(false)
  else
    button.icon:SetDesaturated(true)
  end
end