mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 20:13:13 +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;
|
idc = 1209;
|
||||||
//text = "\z\addons\dayz_code\gui\status\status_bg.paa";
|
//text = "\z\addons\dayz_code\gui\status\status_bg.paa";
|
||||||
x = "0.955313 * safezoneW + safezoneX";
|
x = 0.955313 * safezoneW + safezoneX;
|
||||||
y = "0.65 * safezoneH + safezoneY";
|
y = 0.65 * safezoneH + safezoneY;
|
||||||
w = 0.06;
|
w = 0.075;
|
||||||
h = 0.08;
|
h = 0.10;
|
||||||
};
|
};
|
||||||
class RscPicture_1909: RscPictureGUI
|
class RscPicture_1909: RscPictureGUI
|
||||||
{
|
{
|
||||||
idc = 1909;
|
idc = 1909;
|
||||||
//text = "\z\addons\dayz_code\gui\status\status_combat_border_CA.paa";
|
//text = "\z\addons\dayz_code\gui\status\status_combat_border_CA.paa";
|
||||||
x = "0.955313 * safezoneW + safezoneX";
|
x = 0.958 * safezoneW + safezoneX; // Moved right slightly to better fit full size background
|
||||||
y = "0.65 * safezoneH + safezoneY";
|
y = 0.655 * safezoneH + safezoneY; // Moved down slightly to better fit full size background
|
||||||
w = 0.06;
|
w = 0.06; //decreased slightly (0.075 is too big)
|
||||||
h = 0.08;
|
h = 0.08; //decreased slightly (0.10 is too big)
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
@@ -350,10 +350,10 @@ class RscTitles
|
|||||||
class RscPicture_1308 : RscPictureGUI {
|
class RscPicture_1308 : RscPictureGUI {
|
||||||
idc = 1308;
|
idc = 1308;
|
||||||
//text = "\z\addons\dayz_code\gui\status\status_combat_inside_ca.paa";
|
//text = "\z\addons\dayz_code\gui\status\status_combat_inside_ca.paa";
|
||||||
x = "0.955313 * safezoneW + safezoneX";
|
x = 0.958 * safezoneW + safezoneX; // Moved right slightly to better fit full size background
|
||||||
y = "0.65 * safezoneH + safezoneY";
|
y = 0.655 * safezoneH + safezoneY; // Moved down slightly to better fit full size background
|
||||||
w = 0.06;
|
w = 0.06; //decreased slightly (0.075 is too big)
|
||||||
h = 0.08;
|
h = 0.08; //decreased slightly (0.10 is too big)
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
@@ -385,8 +385,8 @@ class RscTitles
|
|||||||
class RscPicture_1307 : RscPictureGUI {
|
class RscPicture_1307 : RscPictureGUI {
|
||||||
idc = 1307;
|
idc = 1307;
|
||||||
text = "\z\addons\dayz_code\gui\status\status_combat_inside_ca.paa";
|
text = "\z\addons\dayz_code\gui\status\status_combat_inside_ca.paa";
|
||||||
x = "0.955313 * safezoneW + safezoneX";
|
x = 0.955313 * safezoneW + safezoneX;
|
||||||
y = "0.65 * safezoneH + safezoneY";
|
y = 0.65 * safezoneH + safezoneY;
|
||||||
w = 0.06;
|
w = 0.06;
|
||||||
h = 0.08;
|
h = 0.08;
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user