mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 12:12:34 +03:00
Fix combat status_bg not matching other icons' status_bg sizes
See
fbc7754750
for discussion
This commit is contained in:
@@ -257,19 +257,19 @@ class RscTitles
|
||||
{
|
||||
idc = 1209;
|
||||
//text = "\z\addons\dayz_code\gui\status\status_bg.paa";
|
||||
x = "0.955313 * safezoneW + safezoneX";
|
||||
y = "0.65 * safezoneH + safezoneY";
|
||||
w = 0.06;
|
||||
h = 0.08;
|
||||
x = 0.955313 * safezoneW + safezoneX;
|
||||
y = 0.65 * safezoneH + safezoneY;
|
||||
w = 0.075;
|
||||
h = 0.10;
|
||||
};
|
||||
class RscPicture_1909: RscPictureGUI
|
||||
{
|
||||
idc = 1909;
|
||||
//text = "\z\addons\dayz_code\gui\status\status_combat_border_CA.paa";
|
||||
x = "0.955313 * safezoneW + safezoneX";
|
||||
y = "0.65 * safezoneH + safezoneY";
|
||||
w = 0.06;
|
||||
h = 0.08;
|
||||
x = 0.958 * safezoneW + safezoneX; // Moved right slightly to better fit full size background
|
||||
y = 0.655 * safezoneH + safezoneY; // Moved down slightly to better fit full size background
|
||||
w = 0.06; //decreased slightly (0.075 is too big)
|
||||
h = 0.08; //decreased slightly (0.10 is too big)
|
||||
};
|
||||
|
||||
};
|
||||
@@ -350,10 +350,10 @@ class RscTitles
|
||||
class RscPicture_1308 : RscPictureGUI {
|
||||
idc = 1308;
|
||||
//text = "\z\addons\dayz_code\gui\status\status_combat_inside_ca.paa";
|
||||
x = "0.955313 * safezoneW + safezoneX";
|
||||
y = "0.65 * safezoneH + safezoneY";
|
||||
w = 0.06;
|
||||
h = 0.08;
|
||||
x = 0.958 * safezoneW + safezoneX; // Moved right slightly to better fit full size background
|
||||
y = 0.655 * safezoneH + safezoneY; // Moved down slightly to better fit full size background
|
||||
w = 0.06; //decreased slightly (0.075 is too big)
|
||||
h = 0.08; //decreased slightly (0.10 is too big)
|
||||
};
|
||||
};
|
||||
};
|
||||
@@ -385,8 +385,8 @@ class RscTitles
|
||||
class RscPicture_1307 : RscPictureGUI {
|
||||
idc = 1307;
|
||||
text = "\z\addons\dayz_code\gui\status\status_combat_inside_ca.paa";
|
||||
x = "0.955313 * safezoneW + safezoneX";
|
||||
y = "0.65 * safezoneH + safezoneY";
|
||||
x = 0.955313 * safezoneW + safezoneX;
|
||||
y = 0.65 * safezoneH + safezoneY;
|
||||
w = 0.06;
|
||||
h = 0.08;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user