mirror of
https://github.com/parnic/ice-hud.git
synced 2025-06-16 06:40:13 -05:00
- Fix for the alpha problem in graphical combo point display (thanks Kurathor)
- Scaling for every bar - Horizontal position adjustment for you dual screen freaks
This commit is contained in:
24
IceHUD.lua
24
IceHUD.lua
@ -31,12 +31,28 @@ IceHUD.options =
|
||||
set = function(v)
|
||||
IceHUD.IceCore:SetVerticalPos(v)
|
||||
end,
|
||||
min = -200,
|
||||
max = 200,
|
||||
min = -400,
|
||||
max = 400,
|
||||
step = 10,
|
||||
order = 11
|
||||
},
|
||||
|
||||
hpos = {
|
||||
type = 'range',
|
||||
name = 'Horizontal position',
|
||||
desc = 'Horizontal position (for you dual screen freaks)',
|
||||
get = function()
|
||||
return IceHUD.IceCore:GetHorizontalPos()
|
||||
end,
|
||||
set = function(v)
|
||||
IceHUD.IceCore:SetHorizontalPos(v)
|
||||
end,
|
||||
min = -2000,
|
||||
max = 2000,
|
||||
step = 10,
|
||||
order = 12
|
||||
},
|
||||
|
||||
gap = {
|
||||
type = 'range',
|
||||
name = 'Gap',
|
||||
@ -50,7 +66,7 @@ IceHUD.options =
|
||||
min = 50,
|
||||
max = 300,
|
||||
step = 5,
|
||||
order = 12,
|
||||
order = 13,
|
||||
},
|
||||
|
||||
scale = {
|
||||
@ -67,7 +83,7 @@ IceHUD.options =
|
||||
max = 1.5,
|
||||
step = 0.05,
|
||||
isPercent = true,
|
||||
order = 13,
|
||||
order = 14,
|
||||
},
|
||||
}
|
||||
},
|
||||
|
Reference in New Issue
Block a user