ACE3/addons/finger/ACE_Settings.hpp

25 lines
710 B
C++
Raw Normal View History

class ACE_Settings {
2015-06-09 01:34:29 +00:00
class GVAR(canFingerEachOther) {
typeName = "BOOL";
value = 1;
};
class GVAR(maxRange) {
typeName = "SCALAR";
value = 4;
};
class GVAR(indicatorForSelf) {
displayName = CSTRING(indicatorForSelf_name);
description = CSTRING(indicatorForSelf_description);
isClientSettable = 1;
typeName = "BOOL";
value = 1;
};
class GVAR(indicatorColor) {
value[] = {0.83, 0.68, 0.21, 0.75};
typeName = "COLOR";
isClientSettable = 1;
displayName = CSTRING(indicatorColor_name);
description = CSTRING(indicatorColor_description);
};
};