2015-01-12 22:36:04 +00:00
|
|
|
class CfgVehicles {
|
2015-04-12 10:33:09 +00:00
|
|
|
class ACE_Module;
|
|
|
|
class GVAR(ModuleSettings): ACE_Module {
|
2017-11-11 19:21:55 +00:00
|
|
|
scope = 1;
|
2015-05-27 17:04:25 +00:00
|
|
|
displayName = CSTRING(windDeflection_DisplayName);
|
2016-04-08 18:34:50 +00:00
|
|
|
icon = QPATHTOF(UI\Icon_Module_Wind_ca.paa);
|
2015-04-12 10:33:09 +00:00
|
|
|
category = "ACE";
|
|
|
|
function = QUOTE(DFUNC(initModuleSettings));
|
|
|
|
functionPriority = 1;
|
|
|
|
isGlobal = 1;
|
2015-10-19 04:34:11 +00:00
|
|
|
isSingular = 1;
|
2015-04-12 10:33:09 +00:00
|
|
|
isTriggerActivated = 0;
|
2015-05-27 20:04:41 +00:00
|
|
|
author = ECSTRING(common,ACETeam);
|
2015-04-12 10:33:09 +00:00
|
|
|
class Arguments {
|
2015-04-18 09:10:05 +00:00
|
|
|
class enabled {
|
2015-05-27 17:04:25 +00:00
|
|
|
displayName = CSTRING(deflectionModule_DisplayName);
|
|
|
|
description = CSTRING(deflectionModule_Description);
|
2015-04-18 09:10:05 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
2015-04-18 19:17:37 +00:00
|
|
|
class vehicleEnabled {
|
2015-05-27 17:04:25 +00:00
|
|
|
displayName = CSTRING(vehicleEnabled_DisplayName);
|
|
|
|
description = CSTRING(vehicleEnabled_Description);
|
2015-04-18 19:17:37 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
2015-04-12 10:33:09 +00:00
|
|
|
class simulationInterval {
|
2015-05-27 17:04:25 +00:00
|
|
|
displayName = CSTRING(simulationInterval_DisplayName);
|
|
|
|
description = CSTRING(simulationInterval_Description);
|
2015-04-12 10:33:09 +00:00
|
|
|
typeName = "NUMBER";
|
2015-04-12 14:19:32 +00:00
|
|
|
defaultValue = 0.05;
|
2015-04-12 10:33:09 +00:00
|
|
|
};
|
|
|
|
};
|
2015-05-12 00:29:32 +00:00
|
|
|
class ModuleDescription {
|
2015-05-27 17:04:25 +00:00
|
|
|
description = CSTRING(windDeflection_Description);
|
2015-05-12 00:29:32 +00:00
|
|
|
};
|
2015-02-03 20:47:25 +00:00
|
|
|
};
|
2017-11-11 19:21:55 +00:00
|
|
|
};
|