ACE3/addons/frag/functions/fnc_dev_clearTraces.sqf

26 lines
390 B
Plaintext
Raw Normal View History

2024-01-11 20:01:50 +00:00
#include "..\script_component.hpp"
/*
* Author: Lambda.Tiger
2024-01-18 02:51:34 +00:00
* Clears all dev spheres and traces.
*
* Arguments:
* None
*
* Return Value:
* None
*
* Example:
2024-03-29 00:33:56 +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;