ACE3/addons/weather/ACE_Settings.hpp
ulteq 3c91f6abe3 Added ace/module settings for ace_weather:
*enableServerController // weather propagation on the server
*useACEWeather // disable ace weather
*syncRain
*syncWind
*syncMisc
2015-04-27 12:28:56 +02:00

33 lines
959 B
C++

class ACE_Settings {
class GVAR(enableServerController) {
displayName = "Weather propagation";
description = "Enables sever side weather propagation";
typeName = "BOOL";
value = 1;
};
class GVAR(useACEWeather) {
displayName = "ACE Weather";
description = "Overrides the default weather (editor, mission settings) with ACE weather (map based)";
typeName = "BOOL";
value = 1;
};
class GVAR(syncRain) {
displayName = "Sync Rain";
description = "Synchronizes rain";
typeName = "BOOL";
value = 1;
};
class GVAR(syncWind) {
displayName = "Sync Wind";
description = "Synchronizes wind";
typeName = "BOOL";
value = 1;
};
class GVAR(syncMisc) {
displayName = "Sync Misc";
description = "Synchronizes lightnings, rainbow, fog, ...";
typeName = "BOOL";
value = 1;
};
};