ACE3/addons/frag/functions/fnc_dev_clearTraces.sqf
2024-03-28 19:33:56 -05:00

26 lines
390 B
Plaintext

#include "..\script_component.hpp"
/*
* Author: Lambda.Tiger
* Clears all dev spheres and traces.
*
* Arguments:
* None
*
* Return Value:
* None
*
* Example:
* call ace_frag_fnc_dev_clearTraces
*
* Public: No
*/
{
deleteVehicle _x;
} forEach GVAR(dev_eventSpheres);
GVAR(dev_eventSpheres) = [];
GVAR(dev_trackLines) = createHashMap;
GVAR(dev_hitBoxes) = createHashMap;