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>
48 lines
1.2 KiB
C++
48 lines
1.2 KiB
C++
#define __FONTHEIGHT 0.02
|
|
|
|
class RscTitles {
|
|
class GVAR(cam_rose) {
|
|
idd=-1;
|
|
movingEnable = 1;
|
|
fadein = 0;
|
|
fadeout = 1;
|
|
duration = 1e+011;
|
|
name=QGVAR(cam_rose);
|
|
onLoad = QUOTE(uiNamespace setVariable [ARR_2(QQGVAR(cam_rose), _this select 0)]);
|
|
class controls {
|
|
class CHAR_N {
|
|
type = 0;
|
|
idc = 64432;
|
|
style = 0;
|
|
x = 0.497;
|
|
y = 0.297;
|
|
w = 0.2;
|
|
h = 0.2;
|
|
font = "RobotoCondensed";
|
|
sizeEx = __FONTHEIGHT;
|
|
colorText[] = {1, 1, 1, 1};
|
|
colorBackground[]={0,0,0,0};
|
|
text = "N";
|
|
};
|
|
class CHAR_E: CHAR_N {
|
|
idc = 64433;
|
|
x = 0.697;
|
|
y = 0.497;
|
|
text = "E";
|
|
};
|
|
class CHAR_S: CHAR_N {
|
|
idc = 64434;
|
|
x = 0.497;
|
|
y = 0.697;
|
|
text = "S";
|
|
};
|
|
class CHAR_W: CHAR_N {
|
|
idc = 64435;
|
|
x = 0.297;
|
|
y = 0.497;
|
|
text = "W";
|
|
};
|
|
};
|
|
};
|
|
};
|