- fixed bug with selecting the last 4 presets. they weren't actually defined.

This commit is contained in:
Parnic
2011-06-11 05:11:18 +00:00
parent 47ce739caf
commit eeb1515f7b

View File

@ -1008,5 +1008,45 @@ function IceCore.prototype:LoadPresets()
barBgBlendMode = "BLEND",
}
self.presets["CleanCurvesOut"] = {
barTexture = "CleanCurvesOut",
barWidth = 155,
barHeight = 220,
barProportion = 0.14,
barSpace = 1,
barBlendMode = "BLEND",
barBgBlendMode = "BLEND",
}
self.presets["CleanTank"] = {
barTexture = "CleanTank",
barWidth = 155,
barHeight = 220,
barProportion = 0.5,
barSpace = 1,
barBlendMode = "BLEND",
barBgBlendMode = "BLEND",
}
self.presets["PillTank"] = {
barTexture = "PillTank",
barWidth = 155,
barHeight = 220,
barProportion = 0.14,
barSpace = 1,
barBlendMode = "BLEND",
barBgBlendMode = "BLEND",
}
self.presets["GemTank"] = {
barTexture = "GemTank",
barWidth = 155,
barHeight = 220,
barProportion = 0.19,
barSpace = 1,
barBlendMode = "BLEND",
barBgBlendMode = "BLEND",
}
end