mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
415d2f685c
FUNC -> LINKFUNC
18 lines
750 B
Plaintext
18 lines
750 B
Plaintext
#include "script_component.hpp"
|
|
|
|
if (hasInterface) then {
|
|
#include "initKeybinds.inc.sqf"
|
|
["ace_infoDisplayChanged", LINKFUNC(turretDisplayLoaded)] call CBA_fnc_addEventHandler;
|
|
};
|
|
|
|
["CBA_settingsInitialized", {
|
|
TRACE_4("CBA_settingsInitialized",GVAR(airResistanceEnabled),GVAR(allowComputerRangefinder),GVAR(allowCompass),GVAR(useAmmoHandling));
|
|
|
|
["vehicle", LINKFUNC(handlePlayerVehicleChanged), true] call CBA_fnc_addPlayerEventHandler;
|
|
|
|
if (!GVAR(airResistanceEnabled)) exitWith {};
|
|
if (EGVAR(artillerytables,advancedCorrections)) exitWith { TRACE_1("defer firedEH to artillerytables",_this); };
|
|
|
|
["Mortar_01_base_F", "fired", LINKFUNC(handleFired)] call CBA_fnc_addClassEventHandler;
|
|
}] call CBA_fnc_addEventHandler;
|