ACE3/addons/winddeflection/ACE_Settings.hpp
ulteq c5e594ffb8
Wind Deflection - Settings cleanup (#5838)
* Removed confusing 'simulationRadius' setting
2017-12-02 14:18:57 +01:00

25 lines
864 B
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};
};
};