ACE3/addons/map/functions/fnc_moduleMap.sqf

23 lines
610 B
Plaintext
Raw Normal View History

2015-03-16 23:24:53 +00:00
/*
2015-03-24 04:18:00 +00:00
* Author: esteldunedain
2015-03-16 23:24:53 +00:00
* Initializes the Map module.
*
* Arguments:
* Whatever the module provides. (I dunno.)
*
* Return Value:
* None
*/
#include "script_component.hpp"
_logic = _this select 0;
_activated = _this select 2;
if !(_activated) exitWith {};
[_logic, QGVAR(mapIllumination), "MapIllumination"] call EFUNC(common,readSettingFromModule);
[_logic, QGVAR(mapShake), "MapShake" ] call EFUNC(common,readSettingFromModule);
[_logic, QGVAR(mapLimitZoom), "MapLimitZoom" ] call EFUNC(common,readSettingFromModule);
diag_log text "[ACE]: Interaction Module Initialized.";