mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
4b42eb4385
* Merge ST Nightvision * Cleanup * Header cleanup * Add ace setting for fog * Cleanup debug * Manual merge refuel changes * Add new setting for effect scaling * Cleanup * Use ace_common_fnc_getZoom * Fix compat inheritance changes * Fix stringtable * Add category * Tidy function headers * Replace global event with remote event
24 lines
760 B
C++
24 lines
760 B
C++
class ACE_Settings {
|
|
class GVAR(disableNVGsWithSights) {
|
|
category = CSTRING(Category);
|
|
displayName = CSTRING(DisableNVGsWithSights_DisplayName);
|
|
description = CSTRING(DisableNVGsWithSights_description);
|
|
typeName = "BOOL";
|
|
value = 0;
|
|
};
|
|
class GVAR(fogScaling) {
|
|
category = CSTRING(Category);
|
|
displayName = CSTRING(fogScaling_DisplayName);
|
|
description = CSTRING(fogScaling_Description);
|
|
typeName = "SCALAR";
|
|
value = 1;
|
|
};
|
|
class GVAR(effectScaling) {
|
|
category = CSTRING(Category);
|
|
displayName = CSTRING(effectScaling_DisplayName);
|
|
description = CSTRING(effectScaling_Description);
|
|
typeName = "SCALAR";
|
|
value = 1;
|
|
};
|
|
};
|