mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
e6683e8077
* Add slider settings * WARNING to INFO * tweak scopes / adv fatigue
26 lines
842 B
C++
26 lines
842 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;
|
|
sliderSettings[] = {0, 2, 1, 1};
|
|
};
|
|
class GVAR(effectScaling) {
|
|
category = CSTRING(Category);
|
|
displayName = CSTRING(effectScaling_DisplayName);
|
|
description = CSTRING(effectScaling_Description);
|
|
typeName = "SCALAR";
|
|
value = 1;
|
|
sliderSettings[] = {0, 2, 1, 1};
|
|
};
|
|
};
|