mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-13 19:52:38 +03:00
55 lines
1.4 KiB
C++
55 lines
1.4 KiB
C++
class RscDisplayGenderSelect
|
|
{
|
|
idd = 6902;
|
|
enableDisplay = 1;
|
|
class controls
|
|
{
|
|
class GenderPic_Man : RscActiveText
|
|
{
|
|
idc = -1;
|
|
style = 48;
|
|
text = "z\addons\dayz_code\gui\gender_menu_man.paa";
|
|
x = 0.28 * safezoneW + safezoneX;
|
|
y = 0.24 * safezoneH + safezoneY;
|
|
w = 0.117188 * safezoneW;
|
|
h = 0.542373 * safezoneH;
|
|
color[] = { 0.5, 0.5, 0.5, 1 };
|
|
colorActive[] = { 1, 1, 1, 1 };
|
|
action = "closeDialog 0;dayz_selectGender = 'Survivor2_DZ';";
|
|
};
|
|
class GenderPic_Woman : RscActiveText
|
|
{
|
|
idc = -1;
|
|
style = 48;
|
|
text = "z\addons\dayz_code\gui\gender_menu_woman.paa";
|
|
x = 0.6 * safezoneW + safezoneX;
|
|
y = 0.24 * safezoneH + safezoneY;
|
|
w = 0.117188 * safezoneW;
|
|
h = 0.542373 * safezoneH;
|
|
color[] = { 0.5, 0.5, 0.5, 1 };
|
|
colorActive[] = { 1, 1, 1, 1 };
|
|
action = "closeDialog 0;dayz_selectGender = 'SurvivorW2_DZ';";
|
|
};
|
|
class Gender_Title: RscStructuredText
|
|
{
|
|
idc = -1;
|
|
text = "$STR_UI_GENDER_TITLE";
|
|
x = 0.4 * safezoneW + safezoneX;
|
|
y = 0.221864 * safezoneH + safezoneY;
|
|
w = 0.2 * safezoneW;
|
|
h = 0.05 * safezoneH;
|
|
colorBackground[] = {-1,-1,-1,0};
|
|
};
|
|
class Gender_Description: RscStructuredText
|
|
{
|
|
idc = -1;
|
|
text = "$STR_UI_GENDER_DESC";
|
|
x = 0.4 * safezoneW + safezoneX;
|
|
y = 0.366134 * safezoneH + safezoneY;
|
|
w = 0.2 * safezoneW;
|
|
h = 0.3 * safezoneH;
|
|
colorBackground[] = {-1,-1,-1,0};
|
|
};
|
|
};
|
|
};
|