mirror of
https://github.com/parnic/ice-hud.git
synced 2025-06-16 14:50:13 -05:00
Moved Round down for other modules to use
This commit is contained in:
@ -1433,6 +1433,16 @@ function IceBarElement.prototype:SetScaledColor(colorVar, percent, maxColor, min
|
|||||||
colorVar.b = ((maxColor.b - minColor.b) * percent) + minColor.b
|
colorVar.b = ((maxColor.b - minColor.b) * percent) + minColor.b
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function IceBarElement.prototype:Round(num)
|
||||||
|
if (num > 1000000) then
|
||||||
|
return IceHUD:MathRound(num/1000000, 1) .. "M"
|
||||||
|
end
|
||||||
|
if (num > 1000) then
|
||||||
|
return IceHUD:MathRound(num/1000, 1) .. "k"
|
||||||
|
end
|
||||||
|
return num
|
||||||
|
end
|
||||||
|
|
||||||
-- To be overridden
|
-- To be overridden
|
||||||
function IceBarElement.prototype:Update()
|
function IceBarElement.prototype:Update()
|
||||||
end
|
end
|
||||||
|
@ -972,17 +972,6 @@ function IceTargetHealth.prototype:UpdateRaidTargetIcon()
|
|||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
function IceTargetHealth.prototype:Round(health)
|
|
||||||
if (health > 1000000) then
|
|
||||||
return IceHUD:MathRound(health/1000000, 1) .. "M"
|
|
||||||
end
|
|
||||||
if (health > 1000) then
|
|
||||||
return IceHUD:MathRound(health/1000, 1) .. "k"
|
|
||||||
end
|
|
||||||
return health
|
|
||||||
end
|
|
||||||
|
|
||||||
|
|
||||||
function IceTargetHealth.prototype:CheckPvP()
|
function IceTargetHealth.prototype:CheckPvP()
|
||||||
local pvpMode = nil
|
local pvpMode = nil
|
||||||
local minx, maxx, miny, maxy
|
local minx, maxx, miny, maxy
|
||||||
|
Reference in New Issue
Block a user