ACE3/addons/weather/functions/fnc_initModuleSettings.sqf

34 lines
861 B
Plaintext
Raw Normal View History

#include "script_component.hpp"
/*
* Author: Glowbal, Ruthberg
* Module for adjusting the wind deflection settings
*
* Arguments:
* 0: The module logic <LOGIC>
* 1: units <ARRAY>
* 2: activated <BOOL>
*
* Return Value:
* None <NIL>
*
* Example:
* [module, [], true] call ace_weather_fnc_initModuleSettings
*
* Public: No
*/
params ["_logic", "_units", "_activated"];
if !(_activated) exitWith {};
// Turns the weather module on / off
[_logic, QGVAR(enabled), "enabled"] call EFUNC(common,readSettingFromModule);
// Server weather update interval
[_logic, QGVAR(updateInterval), "updateInterval"] call EFUNC(common,readSettingFromModule);
// Turns the (map based) wind simulation on / off
[_logic, QGVAR(windSimulation), "windSimulation"] call EFUNC(common,readSettingFromModule);
GVAR(updateInterval) = 1 max GVAR(updateInterval) min 600;