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>
42 lines
1.2 KiB
C++
42 lines
1.2 KiB
C++
class RscTitles {
|
|
class RscPicture;
|
|
class GVAR(onFire1) {
|
|
idd = -1;
|
|
movingEnable = "true";
|
|
duration = 0.1;
|
|
fadein = 0.15;
|
|
fadeout = 0.75;
|
|
name = QGVAR(onFire1);
|
|
onload = QUOTE(with uiNamespace do {GVAR(onFireIndicator1) = _this select 0});
|
|
|
|
class controls {
|
|
class GVAR(indicator): RscPicture {
|
|
idc = -1;
|
|
type = 0;
|
|
style = 48;
|
|
colorBackground[] = {0, 0, 0, 0};
|
|
colorText[] = {0.9, 0.9, 0.9, 0.6};
|
|
font = "LucidaConsoleB";
|
|
sizeEx = 0.023;
|
|
x = "SafeZoneX";
|
|
y = "SafeZoneY";
|
|
w = "SafeZoneW + 0.05";
|
|
h = "SafeZoneH + 0.05";
|
|
text = QPATHTOF(data\overlay_burn_1.paa);
|
|
};
|
|
};
|
|
};
|
|
|
|
class GVAR(onFire2): GVAR(onFire1) {
|
|
idd = -1;
|
|
name = QGVAR(onFire2);
|
|
onload = QUOTE(with uiNamespace do {GVAR(onFireIndicator2) = _this select 0});
|
|
|
|
class controls: controls {
|
|
class GVAR(indicator): GVAR(indicator) {
|
|
text = QPATHTOF(data\overlay_burn_2.paa);
|
|
};
|
|
};
|
|
};
|
|
};
|