- Most modules now support a new bar filling mode: Expanding outwards from the middle.

This commit is contained in:
rokiyo
2010-10-30 15:08:05 +00:00
parent 7abe2276fb
commit 52a0e26759
6 changed files with 694 additions and 649 deletions

File diff suppressed because it is too large Load Diff

View File

@ -35,6 +35,7 @@ function CastBar.prototype:GetDefaultSettings()
settings["usesDogTagStrings"] = false
settings["rangeColor"] = true
settings["shouldHideBarRotation"] = true
settings["bAllowExpand"] = false
return settings
end

View File

@ -46,6 +46,7 @@ function EclipseBar.prototype:GetDefaultSettings()
height = 6,
}
defaults.shouldHideBarRotation = true
defaults.bAllowExpand = false
return defaults
end

View File

@ -56,6 +56,8 @@ function PlayerHealth.prototype:GetDefaultSettings()
settings["PartyRoleIconOffset"] = {x=90, y=-59}
settings["PartyRoleIconScale"] = 0.9
settings["bAllowExpand"] = false
return settings
end

View File

@ -83,6 +83,7 @@ function SliceAndDice.prototype:GetDefaultSettings()
settings["lowerTextString"] = ""
settings["lowerTextVisible"] = false
settings["hideAnimationSettings"] = true
settings["bAllowExpand"] = false
return settings
end

View File

@ -48,6 +48,7 @@ function IceThreat.prototype:GetDefaultSettings()
settings["showScaledThreat"] = false
settings["displaySecondPlaceThreat"] = true
settings["secondPlaceThreatAlpha"] = 0.75
settings["bAllowExpand"] = false
return settings
end