Version 0.7

- Added an option to change the bar colors
- Using scheduled events now instead of Metrognome
- Some small bug fixes
This commit is contained in:
iceroth
2006-09-24 14:41:55 +00:00
parent 4a0991adac
commit fdbb8843ee
19 changed files with 178 additions and 112 deletions

View File

@ -96,7 +96,7 @@ function MirrorBar.prototype:OnUpdate(elapsed)
self:SetBottomText2()
else
self:SetBottomText1()
self:SetBottomText2(text, "text", 1)
self:SetBottomText2(text, "Text", 1)
end
end
@ -165,10 +165,10 @@ function MirrorBarHandler.prototype:init()
self.bars = {}
self:SetColor("EXHAUSTION", 1, 0.9, 0)
self:SetColor("BREATH", 0, 0.5, 1)
self:SetColor("DEATH", 1, 0.7, 0)
self:SetColor("FEIGNDEATH", 1, 0.9, 0)
self:SetDefaultColor("EXHAUSTION", 1, 0.9, 0)
self:SetDefaultColor("BREATH", 0, 0.5, 1)
self:SetDefaultColor("DEATH", 1, 0.7, 0)
self:SetDefaultColor("FEIGNDEATH", 1, 0.9, 0)
end