mirror of
https://github.com/parnic/ice-hud.git
synced 2025-06-16 06:40:13 -05:00
- Most modules now support a new bar filling mode: Expanding outwards from the middle.
This commit is contained in:
1337
IceBarElement.lua
1337
IceBarElement.lua
File diff suppressed because it is too large
Load Diff
@ -35,6 +35,7 @@ function CastBar.prototype:GetDefaultSettings()
|
|||||||
settings["usesDogTagStrings"] = false
|
settings["usesDogTagStrings"] = false
|
||||||
settings["rangeColor"] = true
|
settings["rangeColor"] = true
|
||||||
settings["shouldHideBarRotation"] = true
|
settings["shouldHideBarRotation"] = true
|
||||||
|
settings["bAllowExpand"] = false
|
||||||
|
|
||||||
return settings
|
return settings
|
||||||
end
|
end
|
||||||
|
@ -46,6 +46,7 @@ function EclipseBar.prototype:GetDefaultSettings()
|
|||||||
height = 6,
|
height = 6,
|
||||||
}
|
}
|
||||||
defaults.shouldHideBarRotation = true
|
defaults.shouldHideBarRotation = true
|
||||||
|
defaults.bAllowExpand = false
|
||||||
|
|
||||||
return defaults
|
return defaults
|
||||||
end
|
end
|
||||||
|
@ -56,6 +56,8 @@ function PlayerHealth.prototype:GetDefaultSettings()
|
|||||||
settings["PartyRoleIconOffset"] = {x=90, y=-59}
|
settings["PartyRoleIconOffset"] = {x=90, y=-59}
|
||||||
settings["PartyRoleIconScale"] = 0.9
|
settings["PartyRoleIconScale"] = 0.9
|
||||||
|
|
||||||
|
settings["bAllowExpand"] = false
|
||||||
|
|
||||||
return settings
|
return settings
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -83,6 +83,7 @@ function SliceAndDice.prototype:GetDefaultSettings()
|
|||||||
settings["lowerTextString"] = ""
|
settings["lowerTextString"] = ""
|
||||||
settings["lowerTextVisible"] = false
|
settings["lowerTextVisible"] = false
|
||||||
settings["hideAnimationSettings"] = true
|
settings["hideAnimationSettings"] = true
|
||||||
|
settings["bAllowExpand"] = false
|
||||||
|
|
||||||
return settings
|
return settings
|
||||||
end
|
end
|
||||||
|
@ -48,6 +48,7 @@ function IceThreat.prototype:GetDefaultSettings()
|
|||||||
settings["showScaledThreat"] = false
|
settings["showScaledThreat"] = false
|
||||||
settings["displaySecondPlaceThreat"] = true
|
settings["displaySecondPlaceThreat"] = true
|
||||||
settings["secondPlaceThreatAlpha"] = 0.75
|
settings["secondPlaceThreatAlpha"] = 0.75
|
||||||
|
settings["bAllowExpand"] = false
|
||||||
return settings
|
return settings
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user