ACE3/addons/frag/functions/fnc_dev_clearTraces.sqf

25 lines
389 B
Plaintext
Raw Normal View History

2024-01-11 20:01:50 +00:00
#include "..\script_component.hpp"
/*
* Author: Lambda.Tiger
* Clears all dev spheres and traces
*
* Arguments:
* None
*
* Return Value:
* None
*
* Example:
2024-01-15 21:37:18 +00:00
* call ace_frag_fnc_dev_clearTraces;
*
* Public: No
*/
{
deleteVehicle _x;
} forEach GVAR(dev_eventSpheres);
GVAR(dev_eventSpheres) = [];
GVAR(dev_trackLines) = createHashMap;
2024-01-15 20:27:29 +00:00
GVAR(dev_hitBoxes) = createHashMap;