mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
cd30b09b4f
* Convert ACE_settings to CBA_settings * Run Modules Globaly, BWC for SetSetting * Add support for string settings * ACE_ServerSettings warning * Add handler for global setting being changed * Add deprecated and replaced not to Settings Framework doc * Remove options menu UI, Move Debug and HeadBug Fix to Options in Pause Menu * Change modules scope to 1 * Disable debug
46 lines
1.6 KiB
C++
46 lines
1.6 KiB
C++
class CfgVehicles {
|
|
class ACE_Module;
|
|
class GVAR(moduleSettings): ACE_Module {
|
|
author = ECSTRING(common,ACETeam);
|
|
category = "ACE";
|
|
displayName = CSTRING(DisplayName);
|
|
function = QFUNC(moduleSettings);
|
|
scope = 1;
|
|
isGlobal = 1;
|
|
isTriggerActivated = 0;
|
|
icon = QPATHTOF(UI\Icon_Module.paa);
|
|
class Arguments {
|
|
class Enabled {
|
|
displayName = CSTRING(Enabled);
|
|
description = CSTRING(Enabled_Description);
|
|
typeName = "BOOL";
|
|
defaultValue = 1;
|
|
};
|
|
class PerformanceFactor {
|
|
displayName = CSTRING(PerformanceFactor);
|
|
description = CSTRING(PerformanceFactor_Description);
|
|
typeName = "NUMBER";
|
|
defaultValue = 1;
|
|
};
|
|
class RecoveryFactor {
|
|
displayName = CSTRING(RecoveryFactor);
|
|
description = CSTRING(RecoveryFactor_Description);
|
|
typeName = "NUMBER";
|
|
defaultValue = 1;
|
|
};
|
|
class LoadFactor {
|
|
displayName = CSTRING(LoadFactor);
|
|
description = CSTRING(LoadFactor_Description);
|
|
typeName = "NUMBER";
|
|
defaultValue = 1;
|
|
};
|
|
class TerrainGradientFactor {
|
|
displayName = CSTRING(TerrainGradientFactor);
|
|
description = CSTRING(TerrainGradientFactor_Description);
|
|
typeName = "NUMBER";
|
|
defaultValue = 1;
|
|
};
|
|
};
|
|
};
|
|
};
|