ACE3/addons/viewdistance/XEH_clientInit.sqf

30 lines
1.0 KiB
Plaintext
Raw Normal View History

2015-05-08 12:14:15 +00:00
#include "script_component.hpp"
if (!hasInterface) exitWith {};
2016-05-24 13:13:11 +00:00
["ace_settingsInitialized", {
// if not enabled, then bugger off.
2015-07-01 17:39:49 +00:00
if !(GVAR(enabled)) exitWith {};
// Limit on load
[false] call FUNC(adaptViewDistance);
// Set the EH which waits for any of the view distance settings to be changed, so that the effect is show immediately
["ace_settingChanged",{
params ["_name"];
if ((_name == QGVAR(viewDistanceOnFoot)) ||
(_name == QGVAR(viewDistanceLandVehicle)) ||
(_name == QGVAR(viewDistanceAirVehicle)) ||
(_name == QGVAR(objectViewDistanceCoeff))) then {
[true] call FUNC(adaptViewDistance);
};
}] call CBA_fnc_addEventHandler;
2015-05-14 15:44:35 +00:00
// Set the EH which waits for a vehicle change to automatically swap between On Foot/In Land Vehicle/In Air Vehicle
// Also run when SettingsInitialized runs (not guaranteed)
["vehicle",{
[false] call FUNC(adaptViewDistance);
}] call CBA_fnc_addPlayerEventHandler;
}] call CBA_fnc_addEventHandler;