Download
(33Kb)
Download
Updated: 01-24-10 02:26 PM
Pictures
File Info
Updated:01-24-10 02:26 PM
Created:01-24-10 02:26 PM
Downloads:2,243
Favorites:4
MD5:

oUF GCD Frame

Version: 1.0
by: juyanith [More]

This is a GCD display based on Hungtar's oUF Global Cooldown Bar.

It uses the Blizzard "clock" animation to display the GCD. I don't have any buttons visible on my screen during combat so I created this addon.

UPDATE: I created a standalone version of this addon that does not require oUF. You can find it here.

How To Use it

If you don't have oUF installed, install it.

The easiest way to test that the cooldown is working is to specify a frame
in your layout that will contain the animation. For instance, your player
health bar:

Code:
	if (unit == 'player') then
		self.GCD_frame = self.Health
	end
This should allow you to see the cooldown animation when the GCD is active.
You could also place it in your portrait, over the target frame, or any
other frame you'd like. This probably isn't what you want though, so you can
create your own frame which will hold the GCD animation. I use something
similar to the following:

Code:
	if (unit == 'player' and IsAddOnLoaded('oUF_GCD_frame')) then		
		local frame = CreateFrame('Frame')
		frame:SetPoint('CENTER', 0, 0)
		frame:SetAlpha(0.3)
		frame:SetWidth(128)
		frame:SetHeight(128)
		frame.GCD_hideFrame = true
		frame:Hide()
		
		local icon = frame:CreateTexture(nil, 'BACKGROUND')
		icon:SetAllPoints()
		icon:SetTexture("Interface\\AddOns\\oUF_GCD_frame\\stop.tga")
		
		self.GCD_frame = frame
	end
This will show a big 'not' icon in the center of your screen when the GCD is
active. It will disappear when the GCD finishes (as specified by
GCD_hideFrame.) You can also create your own cooldown to adjust the its
settings, but by default is is defined as follows:

Code:
	local cooldown = CreateFrame('Cooldown', nil, self.GCD_frame, 'CooldownFrameTemplate')
	cooldown:SetPoint('CENTER', 0, -1)
	cooldown:SetHeight(self.GCD_frame:GetHeight())
	cooldown:SetWidth(self.GCD_frame:GetWidth())
	self.GCD_frame.Cooldown = cooldown
That's pretty much it. Enjoy.

-- Juyanith

Optional Files (0)


There have been no comments posted to this file.
Be the first to add one.



Category Jump: