ACE3/addons/frag/XEH_postInit.sqf
2024-03-01 19:14:07 +01:00

57 lines
1.9 KiB
Plaintext

#include "script_component.hpp"
[
"CBA_settingsInitialized",
{
if (isServer) then {
call FUNC(initMaterialCache);
[
QEGVAR(common,setShotParents),
{
(_this#0) setVariable [QGVAR(shotParent), [_this#1, _this#2]];
}
] call CBA_fnc_addEventHandler;
};
#ifdef DEBUG_MODE_DRAW
if (!hasInterface) exitWith {};
if (!isServer) then {
["ace_firedPlayer", LINKFUNC(dev_fired)] call CBA_fnc_addEventHandler;
["ace_firedPlayerNonLocal", LINKFUNC(dev_fired)] call CBA_fnc_addEventHandler;
["ace_firedNonPlayer", LINKFUNC(dev_fired)] call CBA_fnc_addEventHandler;
["ace_firedPlayerVehicle", LINKFUNC(dev_fired)] call CBA_fnc_addEventHandler;
["ace_firedPlayerVehicleNonLocal", LINKFUNC(dev_fired)] call CBA_fnc_addEventHandler;
["ace_firedNonPlayerVehicle", LINKFUNC(dev_fired)] call CBA_fnc_addEventHandler;
};
GVAR(dev_drawPFEH) = [LINKFUNC(dev_drawTrace), 0] call CBA_fnc_addPerFrameHandler;
[
"ace_interact_menu_newControllableObject",
{
params ["_type"];
private _action = [
QGVAR(debugReset),
"Reset ACE Frag traces",
"",
{
call FUNC(dev_clearTraces);
},
{true}
] call EFUNC(interact_menu,createAction);
[
_type,
1,
["ACE_SelfActions"],
_action,
true
] call ace_interact_menu_fnc_addActionToClass;
}
] call CBA_fnc_addEventHandler;
#endif
}
] call CBA_fnc_addEventHandler;
#ifdef LOG_FRAG_INFO
[true, true, 30] call FUNC(dev_debugAmmo);
#endif