mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
8763184b6a
* Dragon work cleanup remove unused p3ds add pos_gunner_dir/pos_gunner to static add [csw] prefix to arsenal version add sight interaction icons * Update fnc_staticWeaponInit_unloadExtraMags.sqf * ace_rearm compat allows pulling carry mags out of rearm trucks * Update fnc_ai_handleFired.sqf * Re-add 3den attributes * cleanup and move A2 staticweapon strings to ace_csw
39 lines
1.2 KiB
C++
39 lines
1.2 KiB
C++
class ctrlCombo;
|
|
class Cfg3DEN {
|
|
class Attributes {
|
|
class Title;
|
|
class Combo: Title {
|
|
class Controls {
|
|
class Title;
|
|
class Value;
|
|
};
|
|
};
|
|
class GVAR(assemblyModeControl): Combo {
|
|
class Controls: Controls {
|
|
class Title: Title {};
|
|
class Value: Value {
|
|
class Items {
|
|
class Disable {
|
|
text = "$STR_DISABLED";
|
|
value = 0;
|
|
};
|
|
class Enable {
|
|
text = "$STR_CONFIG_JOYSTICK_ENABLED";
|
|
value = 1;
|
|
};
|
|
class EnableAndEmpty {
|
|
text = CSTRING(eden_enableAndEmpty);
|
|
value = 2;
|
|
};
|
|
class Default {
|
|
text = "$STR_VEHICLE_DEFAULT";
|
|
value = 3;
|
|
default = 1;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|