diff --git a/IceCore.lua b/IceCore.lua index bfc51bf..8ddbf10 100644 --- a/IceCore.lua +++ b/IceCore.lua @@ -439,13 +439,29 @@ function IceCore.prototype:LoadPresets() barProportion = 0.14, barSpace = 1, } - - self.presets["UBar"] = { - barTexture = "UBar", - barWidth = 155, + + self.presets["ColorBar"] = { + barTexture = "ColorBar", + barWidth = 120, barHeight = 220, - barProportion = 0.14, - barSpace = 1, + barProportion = 0.15, + barSpace = 3, + } + + self.presets["RivetBar"] = { + barTexture = "RivetBar", + barWidth = 120, + barHeight = 220, + barProportion = 0.15, + barSpace = 3, + } + + self.presets["RivetBar2"] = { + barTexture = "RivetBar2", + barWidth = 120, + barHeight = 220, + barProportion = 0.15, + barSpace = 3, } end diff --git a/IceHUD.lua b/IceHUD.lua index a8458b5..9637212 100644 --- a/IceHUD.lua +++ b/IceHUD.lua @@ -286,7 +286,7 @@ IceHUD.options = set = function(value) IceHUD.IceCore:SetBarPreset(value) end, - validate = { "Bar", "HiBar", "RoundBar" }, + validate = { "Bar", "HiBar", "RoundBar", "ColorBar", "RivetBar", "RivetBar2" }, order = 9 }, @@ -308,7 +308,7 @@ IceHUD.options = set = function(value) IceHUD.IceCore:SetBarTexture(value) end, - validate = { "Bar", "HiBar", "RoundBar" }, + validate = { "Bar", "HiBar", "RoundBar", "ColorBar", "RivetBar", "RivetBar2" }, order = 11 }, diff --git a/textures/ColorBar.blp b/textures/ColorBar.blp new file mode 100644 index 0000000..db41f6e Binary files /dev/null and b/textures/ColorBar.blp differ diff --git a/textures/ColorBarBG.blp b/textures/ColorBarBG.blp new file mode 100644 index 0000000..23afe25 Binary files /dev/null and b/textures/ColorBarBG.blp differ diff --git a/textures/RivetBar.blp b/textures/RivetBar.blp new file mode 100644 index 0000000..5237ad0 Binary files /dev/null and b/textures/RivetBar.blp differ diff --git a/textures/RivetBar2.blp b/textures/RivetBar2.blp new file mode 100644 index 0000000..98c565e Binary files /dev/null and b/textures/RivetBar2.blp differ diff --git a/textures/RivetBar2BG.blp b/textures/RivetBar2BG.blp new file mode 100644 index 0000000..3014777 Binary files /dev/null and b/textures/RivetBar2BG.blp differ diff --git a/textures/RivetBarBG.blp b/textures/RivetBarBG.blp new file mode 100644 index 0000000..92801c5 Binary files /dev/null and b/textures/RivetBarBG.blp differ