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>
27 lines
862 B
C++
27 lines
862 B
C++
|
|
class CfgWeapons {
|
|
class Binocular;
|
|
class ACE_MX2A: Binocular {
|
|
author = ECSTRING(common,ACETeam);
|
|
displayName = CSTRING(DisplayName);
|
|
descriptionShort = CSTRING(Description);
|
|
model = QPATHTOF(data\ace_mx2a.p3d);
|
|
modelOptics = QPATHTOEF(apl,LWTS_optic.p3d);
|
|
picture = QPATHTOF(UI\w_mx2a_ca.paa);
|
|
opticsZoomMax = 0.1;
|
|
distanceZoomMax = 120;
|
|
opticsZoomMin = 0.05;
|
|
distanceZoomMin = 400;
|
|
opticsZoomInit = 0.1;
|
|
visionMode[] = {"Ti"};
|
|
thermalMode[] = {0,1};
|
|
discretefov[] = {"0.33333/1", "0.33333/2"}; // 1x/2x -- http://www.drs.com/Products/RSTA/PDF/MX2A.pdf
|
|
discreteInitIndex = 0;
|
|
discreteDistance[] = {120,400};
|
|
discreteDistanceInitIndex = 1;
|
|
class WeaponSlotsInfo {
|
|
mass = 20;
|
|
};
|
|
};
|
|
};
|