mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
a40b0d48f2
* HEMTT v10 Compatibility * Update addons/field_rations/CfgUIGrids.hpp Co-authored-by: PabstMirror <pabstmirror@gmail.com> * fix PabstMirror review * optionals * End empty macro definitions with semi-colon (HEMTT v0.10) * Adapt to HEMTT v0.10.0-a14 * Revert End empty macro definitions with semi-colon * Disable old HEMTT build step in CI * Add missing include and fix macro usage and include casings * End empty macro definitions with semi-colon (HEMTT v0.10) * Update addons/disarming/functions/fnc_showItemsInListbox.sqf Co-authored-by: PabstMirror <pabstmirror@gmail.com> * cleanup test code * arty - keep style same as before * fix fire screams * Update script_component.hpp * Keep old hemtt/workflow/sqfc * Update arma.yml * Update arma.yml * Update CfgUIGrids.hpp --------- Co-authored-by: PabstMirror <pabstmirror@gmail.com> Co-authored-by: jonpas <jonpas33@gmail.com>
52 lines
1.7 KiB
C++
52 lines
1.7 KiB
C++
class RscText;
|
|
class RscPicture;
|
|
class RscTitles {
|
|
class ACE_Altimeter {
|
|
idd = 9935;
|
|
enableSimulation = 1;
|
|
movingEnable = 0;
|
|
fadeIn=0;
|
|
fadeOut=1;
|
|
duration = 10e10;
|
|
onLoad = "uiNamespace setVariable ['ACE_Altimeter', _this select 0];";
|
|
class controls {
|
|
class AltimeterImage: RscPicture {
|
|
idc = 1200;
|
|
text = QPATHTOF(UI\watch_altimeter.paa);
|
|
x = "0.118437 * safezoneW + safezoneX";
|
|
y = "0.621 * safezoneH + safezoneY";
|
|
w = "0.20625 * safezoneW";
|
|
h = "0.341 * safezoneH";
|
|
};
|
|
class HeightText: RscText {
|
|
idc = 1100;
|
|
text = "----";
|
|
x = "0.200937 * safezoneW + safezoneX";
|
|
y = "0.764 * safezoneH + safezoneY";
|
|
w = "0.04125 * safezoneW";
|
|
h = "0.033 * safezoneH";
|
|
colorBackground[] = {0,0,0,0};
|
|
colorText[] = {0,0,0,1};
|
|
};
|
|
class DecendRate: RscText {
|
|
idc = 1000;
|
|
text = "--";
|
|
x = "0.21125 * safezoneW + safezoneX";
|
|
y = "0.742 * safezoneH + safezoneY";
|
|
w = "0.020625 * safezoneW";
|
|
h = "0.022 * safezoneH";
|
|
colorText[] = {0,0,0,1};
|
|
};
|
|
class TimeText: RscText {
|
|
idc = 1001;
|
|
text = "00:00";
|
|
x = "0.206094 * safezoneW + safezoneX";
|
|
y = "0.819 * safezoneH + safezoneY";
|
|
w = "0.0309375 * safezoneW";
|
|
h = "0.022 * safezoneH";
|
|
colorText[] = {0,0,0,1};
|
|
};
|
|
};
|
|
};
|
|
};
|