mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
33 lines
1.2 KiB
C++
33 lines
1.2 KiB
C++
class ACE_Settings {
|
|
class GVAR(enabled) {
|
|
category = CSTRING(windDeflection_DisplayName);
|
|
displayName = CSTRING(deflectionModule_DisplayName);
|
|
description = CSTRING(deflectionModule_Description);
|
|
typeName = "BOOL";
|
|
value = 1;
|
|
};
|
|
class GVAR(vehicleEnabled) {
|
|
category = CSTRING(windDeflection_DisplayName);
|
|
displayName = CSTRING(vehicleEnabled_DisplayName);
|
|
description = CSTRING(vehicleEnabled_Description);
|
|
typeName = "BOOL";
|
|
value = 1;
|
|
};
|
|
class GVAR(simulationInterval) {
|
|
category = CSTRING(windDeflection_DisplayName);
|
|
displayName = CSTRING(simulationInterval_DisplayName);
|
|
description = CSTRING(simulationInterval_Description);
|
|
typeName = "SCALAR";
|
|
value = 0.05;
|
|
sliderSettings[] = {0, 0.2, 0.05, 1};
|
|
};
|
|
class GVAR(simulationRadius) {
|
|
category = CSTRING(windDeflection_DisplayName);
|
|
displayName = CSTRING(simulationRadius_DisplayName);
|
|
description = CSTRING(simulationRadius_Description);
|
|
typeName = "SCALAR";
|
|
value = 3000;
|
|
sliderSettings[] = {0, 3000, 3000, 0};
|
|
};
|
|
};
|