ACE3/addons/winddeflection/CfgVehicles.hpp

43 lines
1.7 KiB
C++
Raw Normal View History

class CfgVehicles {
class ACE_Module;
class GVAR(ModuleSettings): ACE_Module {
2015-02-03 20:47:25 +00:00
scope = 2;
displayName = "$STR_ACE_Weather_windDeflection_DisplayName";
2015-03-23 19:02:35 +00:00
icon = QUOTE(PATHTOF(UI\Icon_Module_Wind_ca.paa));
category = "ACE";
function = QUOTE(DFUNC(initModuleSettings));
functionPriority = 1;
isGlobal = 1;
isTriggerActivated = 0;
author = "$STR_ACE_Common_ACETeam";
class Arguments {
class enabled {
displayName = "$STR_ACE_Weather_deflectionModule_DisplayName";
description = "$STR_ACE_Weather_deflectionModule_Description";
typeName = "BOOL";
defaultValue = 1;
};
class vehicleEnabled {
displayName = "$STR_ACE_Weather_vehicleEnabled_DisplayName";
description = "$STR_ACE_Weather_vehicleEnabled_Description";
typeName = "BOOL";
defaultValue = 1;
};
class simulationInterval {
displayName = "$STR_ACE_Weather_simulationInterval_DisplayName";
description = "$STR_ACE_Weather_simulationInterval_Description";
typeName = "NUMBER";
defaultValue = 0.05;
};
class simulationRadius {
displayName = "$STR_ACE_Weather_simulationRadius_DisplayName";
description = "$STR_ACE_Weather_simulationRadius_Description";
typeName = "NUMBER";
defaultValue = 3000;
};
};
class ModuleDescription {
description = "$STR_ACE_Weather_windDeflection_Description";
};
2015-02-03 20:47:25 +00:00
};
};