2015-04-12 10:33:09 +00:00
|
|
|
class ACE_Settings {
|
2015-04-18 09:10:05 +00:00
|
|
|
class GVAR(enabled) {
|
2017-11-13 17:50:24 +00:00
|
|
|
category = CSTRING(windDeflection_DisplayName);
|
2015-08-03 20:52:35 +00:00
|
|
|
displayName = CSTRING(deflectionModule_DisplayName);
|
|
|
|
description = CSTRING(deflectionModule_Description);
|
2015-04-18 09:10:05 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
value = 1;
|
|
|
|
};
|
2015-04-18 19:17:37 +00:00
|
|
|
class GVAR(vehicleEnabled) {
|
2017-11-13 17:50:24 +00:00
|
|
|
category = CSTRING(windDeflection_DisplayName);
|
2015-08-03 20:52:35 +00:00
|
|
|
displayName = CSTRING(vehicleEnabled_DisplayName);
|
|
|
|
description = CSTRING(vehicleEnabled_Description);
|
2015-04-18 19:17:37 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
value = 1;
|
|
|
|
};
|
2015-04-12 10:33:09 +00:00
|
|
|
class GVAR(simulationInterval) {
|
2017-11-13 17:50:24 +00:00
|
|
|
category = CSTRING(windDeflection_DisplayName);
|
2015-08-03 20:52:35 +00:00
|
|
|
displayName = CSTRING(simulationInterval_DisplayName);
|
|
|
|
description = CSTRING(simulationInterval_Description);
|
2015-04-12 10:52:13 +00:00
|
|
|
typeName = "SCALAR";
|
2015-04-12 14:19:32 +00:00
|
|
|
value = 0.05;
|
2017-12-16 17:51:15 +00:00
|
|
|
sliderSettings[] = {0, 0.2, 0.05, 2};
|
2015-04-12 10:33:09 +00:00
|
|
|
};
|
|
|
|
};
|