mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
737b1cc216
For future limiting of terraingrid
28 lines
642 B
Plaintext
28 lines
642 B
Plaintext
/*
|
|
* 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 {
|
|
diag_log text "[ACE]: View Distance Limit Module is placed but NOT active.";
|
|
};
|
|
|
|
[_logic, QGVAR(limitViewDistance),"moduleViewDistanceLimit"] call EFUNC(common,readSettingFromModule);
|
|
|
|
diag_log format ["[ACE]: View Distance Limit Module Initialized. Limit set by module: %1",GVAR(limitViewDistance)]; |