mirror of
https://github.com/parnic/ice-hud.git
synced 2025-06-16 06:40:13 -05:00
- user-submitted change care of JX:
Added mechanism to provide common throttled updates to all bars, even those that are hidden. Added "Display when ready" option to Custom Cooldown bar to replace "Display when empty" toggle. Modified Custom Cooldown bar to use common throttled updates. This should be rolled out to all bars eventually. Tidied up display of spell icons in Custom Cooldown bar. There was a problem with the appropriate aura icon not being loaded correctly until the spell had fired.
This commit is contained in:
16
IceHUD.lua
16
IceHUD.lua
@ -591,6 +591,22 @@ IceHUD.options =
|
||||
end,
|
||||
order = 96
|
||||
},
|
||||
|
||||
updatePeriod = {
|
||||
type = 'range',
|
||||
name = 'Update Period',
|
||||
desc = 'Time between display updates in seconds',
|
||||
get = function()
|
||||
return IceHUD.IceCore:UpdatePeriod()
|
||||
end,
|
||||
set = function(v)
|
||||
IceHUD.IceCore:SetUpdatePeriod(v)
|
||||
end,
|
||||
min = 0.01,
|
||||
max = 1.0,
|
||||
step = 0.01,
|
||||
order = 97
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user