2015-08-08 06:26:15 +00:00
|
|
|
class CfgVehicles {
|
|
|
|
class ACE_Module;
|
|
|
|
class GVAR(moduleSettings): ACE_Module {
|
2017-11-11 19:21:55 +00:00
|
|
|
scope = 1;
|
2015-08-08 06:26:15 +00:00
|
|
|
category = "ACE";
|
|
|
|
displayName = CSTRING(moduleSettings_displayName);
|
|
|
|
function = QFUNC(moduleSettings);
|
2017-11-11 19:21:55 +00:00
|
|
|
isGlobal = 1;
|
2015-10-19 04:34:11 +00:00
|
|
|
isSingular = 1;
|
2015-08-08 06:26:15 +00:00
|
|
|
author = ECSTRING(common,ACETeam);
|
2016-04-08 18:34:50 +00:00
|
|
|
icon = QPATHTOF(ui\icon_module_map_gestures_ca.paa);
|
2015-08-08 06:26:15 +00:00
|
|
|
class Arguments {
|
|
|
|
class enabled {
|
|
|
|
displayName = CSTRING(enabled_DisplayName);
|
2015-10-19 04:59:40 +00:00
|
|
|
description = CSTRING(enabled_description);
|
2015-08-08 06:26:15 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
|
|
|
class maxRange {
|
|
|
|
displayName = CSTRING(maxRange_displayName);
|
|
|
|
description = CSTRING(maxRange_description);
|
|
|
|
typeName = "NUMBER";
|
2015-10-19 04:59:40 +00:00
|
|
|
defaultValue = 7;
|
2015-08-08 06:26:15 +00:00
|
|
|
};
|
|
|
|
class interval {
|
|
|
|
displayName = CSTRING(interval_displayName);
|
|
|
|
description = CSTRING(interval_description);
|
|
|
|
typeName = "NUMBER";
|
|
|
|
defaultValue = 0.03;
|
|
|
|
};
|
|
|
|
class defaultLeadColor {
|
|
|
|
displayName = CSTRING(defaultLeadColor_displayName);
|
|
|
|
description = CSTRING(defaultLeadColor_description);
|
|
|
|
typeName = "STRING";
|
2015-10-19 04:59:40 +00:00
|
|
|
defaultValue = "1,0.88,0,0.95";
|
2015-08-08 06:26:15 +00:00
|
|
|
};
|
|
|
|
class defaultColor {
|
|
|
|
displayName = CSTRING(defaultColor_displayName);
|
|
|
|
description = CSTRING(defaultColor_description);
|
|
|
|
typeName = "STRING";
|
2015-10-19 04:59:40 +00:00
|
|
|
defaultValue = "1,0.88,0,0.7";
|
2015-08-08 06:26:15 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
class GVAR(moduleGroupSettings): ACE_Module {
|
2017-11-12 18:19:25 +00:00
|
|
|
scope = 2;
|
2015-08-08 06:26:15 +00:00
|
|
|
category = "ACE";
|
|
|
|
displayName = CSTRING(moduleGroupSettings_displayName);
|
|
|
|
function = QFUNC(moduleGroupSettings);
|
2016-10-27 17:54:58 +00:00
|
|
|
isGlobal = 2;
|
2015-08-08 06:26:15 +00:00
|
|
|
author = ECSTRING(common,ACETeam);
|
2016-04-08 18:34:50 +00:00
|
|
|
icon = QPATHTOF(ui\icon_module_map_gestures_ca.paa);
|
2015-08-08 06:26:15 +00:00
|
|
|
class Arguments {
|
|
|
|
class leadColor {
|
|
|
|
displayName = CSTRING(leadColor_displayName);
|
|
|
|
description = CSTRING(leadColor_description);
|
|
|
|
typeName = "STRING";
|
2015-10-19 04:59:40 +00:00
|
|
|
defaultValue = "1,0.88,0,0.95";
|
2015-08-08 06:26:15 +00:00
|
|
|
};
|
|
|
|
class color {
|
|
|
|
displayName = CSTRING(color_displayName);
|
|
|
|
description = CSTRING(color_description);
|
|
|
|
typeName = "STRING";
|
2015-10-19 04:59:40 +00:00
|
|
|
defaultValue = "1,0.88,0,0.7";
|
2015-08-08 06:26:15 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|