mirror of
https://github.com/JezuzLizard/BO2-Reimagined.git
synced 2025-06-10 15:17:57 -05:00
Move perk icons to same position on all maps
Move health bar HUD and zone name HUD down Origins: move tablet HUD up
This commit is contained in:
@ -496,15 +496,6 @@ health_bar_hud()
|
||||
x = 5;
|
||||
y = -104;
|
||||
|
||||
if (level.script == "zm_buried")
|
||||
{
|
||||
y -= 25;
|
||||
}
|
||||
else if (level.script == "zm_tomb")
|
||||
{
|
||||
y -= 60;
|
||||
}
|
||||
|
||||
hud = self createbar((1, 1, 1), level.primaryprogressbarwidth - 10, level.primaryprogressbarheight);
|
||||
hud.alignx = "left";
|
||||
hud.bar.alignx = "left";
|
||||
@ -587,15 +578,6 @@ shield_bar_hud()
|
||||
x = 5;
|
||||
y = -104;
|
||||
|
||||
if (level.script == "zm_buried")
|
||||
{
|
||||
y -= 25;
|
||||
}
|
||||
else if (level.script == "zm_tomb")
|
||||
{
|
||||
y -= 60;
|
||||
}
|
||||
|
||||
hud = self createbar((0.5, 0.5, 0.5), level.primaryprogressbarwidth - 10, int(level.primaryprogressbarheight / 2));
|
||||
hud.alignx = "left";
|
||||
hud.bar.alignx = "left";
|
||||
@ -981,15 +963,6 @@ zone_hud()
|
||||
x = 5;
|
||||
y = -119;
|
||||
|
||||
if (level.script == "zm_buried")
|
||||
{
|
||||
y -= 25;
|
||||
}
|
||||
else if (level.script == "zm_tomb")
|
||||
{
|
||||
y -= 60;
|
||||
}
|
||||
|
||||
hud = newClientHudElem(self);
|
||||
hud.alignx = "left";
|
||||
hud.aligny = "middle";
|
||||
|
Reference in New Issue
Block a user