2024-01-11 21:44:01 +00:00
|
|
|
#include "script_component.hpp"
|
2016-05-30 16:37:03 +00:00
|
|
|
|
2024-01-13 06:35:22 +00:00
|
|
|
[
|
|
|
|
"CBA_settingsInitialized",
|
|
|
|
{
|
2024-01-08 21:22:52 +00:00
|
|
|
if (isServer) then {
|
|
|
|
[] call FUNC(initBlackList);
|
2024-01-11 00:51:38 +00:00
|
|
|
[] call FUNC(initMaterialCache);
|
2024-01-08 21:22:52 +00:00
|
|
|
};
|
|
|
|
|
2024-01-10 05:17:08 +00:00
|
|
|
#ifdef DEBUG_MODE_DRAW
|
2024-01-15 05:08:37 +00:00
|
|
|
if (hasInterface) then {
|
2024-01-11 00:51:38 +00:00
|
|
|
private _h = [LINKFUNC(dev_drawTrace), 0] call CBA_fnc_addPerFrameHandler;
|
|
|
|
missionNamespace setVariable [QGVAR(dev_drawPFEH), _h];
|
|
|
|
["unit", LINKFUNC(dev_switchUnitHandle), true] call CBA_fnc_addPlayerEventHandler;
|
|
|
|
[objNull, ace_player] call FUNC(dev_switchUnitHandle);
|
2024-01-08 21:22:52 +00:00
|
|
|
};
|
|
|
|
#endif
|
2024-01-13 06:35:22 +00:00
|
|
|
}
|
|
|
|
] call CBA_fnc_addEventHandler;
|
2016-05-30 16:37:03 +00:00
|
|
|
|
2017-04-11 15:33:56 +00:00
|
|
|
|
2024-01-08 21:22:52 +00:00
|
|
|
#ifdef LOG_FRAG_INFO
|
2016-12-01 17:01:55 +00:00
|
|
|
[true, true, 30] call FUNC(dev_debugAmmo);
|
|
|
|
#endif
|