2015-04-12 10:33:09 +00:00
|
|
|
class ACE_Settings {
|
2015-04-18 09:10:05 +00:00
|
|
|
class GVAR(enabled) {
|
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) {
|
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) {
|
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;
|
2015-04-12 10:33:09 +00:00
|
|
|
};
|
|
|
|
class GVAR(simulationRadius) {
|
2015-08-03 20:52:35 +00:00
|
|
|
displayName = CSTRING(simulationRadius_DisplayName);
|
|
|
|
description = CSTRING(simulationRadius_Description);
|
2015-04-12 10:52:13 +00:00
|
|
|
typeName = "SCALAR";
|
|
|
|
value = 3000;
|
2015-04-12 10:33:09 +00:00
|
|
|
};
|
|
|
|
};
|