2015-08-08 06:26:15 +00:00
|
|
|
class ACE_Settings {
|
|
|
|
class GVAR(enabled) {
|
|
|
|
displayName = CSTRING(enabled_displayName);
|
|
|
|
description = CSTRING(enabled_description);
|
2015-08-24 20:03:47 +00:00
|
|
|
category = CSTRING(mapGestures_category);
|
|
|
|
typeName = "BOOL";
|
|
|
|
value = 1;
|
2015-08-08 06:26:15 +00:00
|
|
|
};
|
|
|
|
class GVAR(maxRange) {
|
|
|
|
displayName = CSTRING(maxRange_displayName);
|
|
|
|
description = CSTRING(maxRange_description);
|
2015-08-24 20:03:47 +00:00
|
|
|
category = CSTRING(mapGestures_category);
|
|
|
|
typeName = "SCALAR";
|
|
|
|
value = 7;
|
2015-08-08 06:26:15 +00:00
|
|
|
};
|
|
|
|
class GVAR(interval) {
|
|
|
|
displayName = CSTRING(interval_displayName);
|
|
|
|
description = CSTRING(interval_description);
|
2015-08-24 20:03:47 +00:00
|
|
|
category = CSTRING(mapGestures_category);
|
|
|
|
typeName = "SCALAR";
|
|
|
|
value = 0.03;
|
2015-08-08 06:26:15 +00:00
|
|
|
};
|
2015-08-24 20:03:47 +00:00
|
|
|
class GVAR(nameTextColor) {
|
|
|
|
displayName = CSTRING(nameTextColor_displayName);
|
|
|
|
description = CSTRING(nameTextColor_description);
|
|
|
|
category = CSTRING(mapGestures_category);
|
|
|
|
isClientSettable = 1;
|
2015-08-08 06:26:15 +00:00
|
|
|
typeName = "COLOR";
|
2015-08-24 20:03:47 +00:00
|
|
|
value[] = {0.2, 0.2, 0.2, 0.3};
|
|
|
|
};
|
|
|
|
class GVAR(defaultLeadColor) {
|
2015-08-08 06:26:15 +00:00
|
|
|
displayName = CSTRING(defaultLeadColor_displayName);
|
|
|
|
description = CSTRING(defaultLeadColor_description);
|
2015-08-24 20:03:47 +00:00
|
|
|
category = CSTRING(mapGestures_category);
|
|
|
|
isClientSettable = 1;
|
|
|
|
typeName = "COLOR";
|
|
|
|
value[] = {1, 0.88, 0, 0.95};
|
2015-08-08 06:26:15 +00:00
|
|
|
};
|
|
|
|
class GVAR(defaultColor) {
|
|
|
|
displayName = CSTRING(defaultColor_displayName);
|
|
|
|
description = CSTRING(defaultColor_description);
|
2015-08-24 20:03:47 +00:00
|
|
|
category = CSTRING(mapGestures_category);
|
|
|
|
isClientSettable = 1;
|
|
|
|
typeName = "COLOR";
|
|
|
|
value[] = {1, 0.88, 0, 0.7};
|
2015-08-08 06:26:15 +00:00
|
|
|
};
|
2016-05-07 20:14:56 +00:00
|
|
|
class GVAR(groupColorConfigurations) {
|
|
|
|
displayName = CSTRING(groupColorConfigurations_displayName);
|
|
|
|
description = CSTRING(groupColorConfigurations_description);
|
2015-08-24 20:03:47 +00:00
|
|
|
category = CSTRING(mapGestures_category);
|
|
|
|
typeName = "ARRAY";
|
|
|
|
value[] = {};
|
2015-08-08 06:26:15 +00:00
|
|
|
};
|
2016-05-07 20:14:56 +00:00
|
|
|
class GVAR(groupColorConfigurationMapping) {
|
|
|
|
displayName = CSTRING(groupColorConfigurationMapping_displayName);
|
|
|
|
description = CSTRING(groupColorConfigurationMapping_description);
|
2015-08-24 20:03:47 +00:00
|
|
|
category = CSTRING(mapGestures_category);
|
|
|
|
typeName = "ARRAY";
|
2015-08-24 20:45:59 +00:00
|
|
|
value[] = {{}, {}};
|
2015-08-08 06:26:15 +00:00
|
|
|
};
|
|
|
|
};
|