View Single Post
10-14-14, 08:13 PM   #10
semlar
A Pyroguard Emberseer
 
semlar's Avatar
AddOn Author - Click to view addons
Join Date: Sep 2007
Posts: 1,060
I'll just document some of the other cooldown methods that you might be interested in here.
Lua Code:
  1. -- Hides flash animation (bling) at the end of the cooldown
  2. Cooldown:SetDrawBling(false)
  3. -- Hides background (swipe texture) of the cooldown
  4. Cooldown:SetDrawSwipe(false)
  5. -- Hides the glowing line that marks the edge of the cooldown swipe
  6. Cooldown:SetDrawEdge(false)
  7. -- Hides the countdown numbers regardless of the cvar setting
  8. Cooldown:SetHideCountdownNumbers(true)

Last edited by semlar : 10-14-14 at 08:22 PM.
  Reply With Quote