mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
44466e8be8
Conflicts: addons/map/CfgVehicles.hpp addons/medical/CfgVehicles.hpp Conflicts: addons/map/CfgVehicles.hpp addons/medical/CfgVehicles.hpp addons/optionsmenu/stringtable.xml
43 lines
1.7 KiB
C++
43 lines
1.7 KiB
C++
class CfgVehicles {
|
|
class ACE_Module;
|
|
class GVAR(ModuleSettings): ACE_Module {
|
|
scope = 2;
|
|
displayName = "$STR_ACE_Weather_windDeflection_DisplayName";
|
|
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";
|
|
};
|
|
};
|
|
}; |