2015-05-08 16:30:28 +00:00
|
|
|
/*
|
|
|
|
* Author: Winter
|
|
|
|
* Initialises the view distance limiter module
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: logic <OBJECT>
|
|
|
|
* 1: Synchronised Units <ARRAY>
|
|
|
|
* 2: Module Activated <BOOL>
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
if (!isServer) exitWith {};
|
|
|
|
|
|
|
|
PARAMS_3(_logic,_units,_activated);
|
|
|
|
|
|
|
|
if (!_activated) exitWith {
|
2015-05-08 16:41:32 +00:00
|
|
|
diag_log text "[ACE]: View Distance Limit Module is placed but NOT active.";
|
2015-05-08 16:30:28 +00:00
|
|
|
};
|
|
|
|
|
2015-05-09 16:42:02 +00:00
|
|
|
[_logic, QGVAR(limitViewDistance),"moduleViewDistanceLimit"] call EFUNC(common,readSettingFromModule);
|
2015-05-08 16:30:28 +00:00
|
|
|
|
2015-05-09 16:42:02 +00:00
|
|
|
diag_log format ["[ACE]: View Distance Limit Module Initialized. Limit set by module: %1",GVAR(limitViewDistance)];
|