Version 0.9

- New round bar texture
- Standalone druid mana bar
- Lots of stuff I can't remember
This commit is contained in:
iceroth
2007-04-16 16:58:00 +00:00
parent f5b0391090
commit f63072e40c
17 changed files with 148 additions and 109 deletions

View File

@ -144,12 +144,11 @@ function CastBar.prototype:CreateLagBar()
self.lagBar:SetStatusBarTexture(self.lagBar.bar)
local r, g, b = self:GetColor("CastFail")
self.lagBar:SetStatusBarColor(
self.settings.backgroundColor.r,
self.settings.backgroundColor.g,
self.settings.backgroundColor.b,
self.moduleSettings.lagAlpha)
local r, g, b = self.settings.backgroundColor.r, self.settings.backgroundColor.g, self.settings.backgroundColor.b
if (self.settings.backgroundToggle) then
r, g, b = self:GetColor("CastCasting")
end
self.lagBar:SetStatusBarColor(r, g, b, self.moduleSettings.lagAlpha)
if (self.moduleSettings.side == IceCore.Side.Left) then
@ -196,4 +195,4 @@ end
-------------------------------------------------------------------------------
-- Load us up
PRKL = CastBar:new()
CastBar:new()