- added an option to animate the lost/gained amounts on each individual bar with a tweak-able speed

This commit is contained in:
Parnic
2008-02-07 06:59:29 +00:00
parent e89a2abcad
commit b8c3e0cf1c
3 changed files with 104 additions and 7 deletions

View File

@ -52,6 +52,21 @@ function TargetCast.prototype:TargetChanged(unit)
self:StopBar()
end
function TargetCast.prototype:GetOptions()
local opts = TargetCast.super.prototype.GetOptions(self)
opts["shouldAnimate"] =
{
}
opts["desiredLerpTime"] =
{
}
return opts
end
-------------------------------------------------------------------------------