ACE3/addons/frag/functions/fnc_dev_clearTraces.sqf
lambdatiger 8b3826a78c
white space for clarity
Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com>
2024-01-18 15:10:31 -06:00

26 lines
391 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;