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
33 lines
1.0 KiB
C++
33 lines
1.0 KiB
C++
class ACE_Settings {
|
|
class GVAR(enabled) {
|
|
category = CSTRING(DisplayName);
|
|
value = 0;
|
|
typeName = "BOOL";
|
|
displayName = CSTRING(enabled_displayName);
|
|
};
|
|
class GVAR(maxRange) {
|
|
category = CSTRING(DisplayName);
|
|
value = 4;
|
|
typeName = "SCALAR";
|
|
displayName = CSTRING(maxRange_displayName);
|
|
description = CSTRING(maxRange_description);
|
|
sliderSettings[] = {0, 50, 4, 1};
|
|
};
|
|
class GVAR(indicatorForSelf) {
|
|
category = CSTRING(DisplayName);
|
|
value = 1;
|
|
typeName = "BOOL";
|
|
isClientSettable = 1;
|
|
displayName = CSTRING(indicatorForSelf_name);
|
|
description = CSTRING(indicatorForSelf_description);
|
|
};
|
|
class GVAR(indicatorColor) {
|
|
category = CSTRING(DisplayName);
|
|
value[] = {0.83, 0.68, 0.21, 0.75};
|
|
typeName = "COLOR";
|
|
isClientSettable = 1;
|
|
displayName = CSTRING(indicatorColor_name);
|
|
description = CSTRING(indicatorColor_description);
|
|
};
|
|
};
|