2015-04-27 10:28:56 +00:00
|
|
|
class ACE_Settings {
|
2017-11-10 14:44:15 +00:00
|
|
|
class GVAR(enabled) {
|
2017-11-13 17:50:24 +00:00
|
|
|
category = CSTRING(Module_DisplayName);
|
2017-11-10 14:44:15 +00:00
|
|
|
displayName = CSTRING(enabled_DisplayName);
|
|
|
|
description = CSTRING(enabled_Description);
|
2015-04-27 10:28:56 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
value = 1;
|
|
|
|
};
|
2017-11-10 14:44:15 +00:00
|
|
|
class GVAR(updateInterval) {
|
2017-11-13 17:50:24 +00:00
|
|
|
category = CSTRING(Module_DisplayName);
|
2017-11-10 14:44:15 +00:00
|
|
|
displayName = CSTRING(updateInterval_DisplayName);
|
|
|
|
description = CSTRING(updateInterval_Description);
|
|
|
|
typeName = "SCALAR";
|
|
|
|
value = 60;
|
2017-11-13 09:27:09 +00:00
|
|
|
sliderSettings[] = {0, 300, 0, 0};
|
2015-04-27 10:28:56 +00:00
|
|
|
};
|
2017-11-10 14:44:15 +00:00
|
|
|
class GVAR(windSimulation) {
|
2017-11-13 17:50:24 +00:00
|
|
|
category = CSTRING(Module_DisplayName);
|
2017-11-10 14:44:15 +00:00
|
|
|
displayName = CSTRING(windSimulation_DisplayName);
|
|
|
|
description = CSTRING(windSimulation_Description);
|
2015-04-27 10:28:56 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
value = 1;
|
|
|
|
};
|
|
|
|
};
|