2024-01-11 20:01:50 +00:00
|
|
|
#include "..\script_component.hpp"
|
2024-01-08 21:22:52 +00:00
|
|
|
/*
|
|
|
|
* Author: Lambda.Tiger
|
2024-01-18 02:51:34 +00:00
|
|
|
* Clears all dev spheres and traces.
|
2024-01-08 21:22:52 +00:00
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Example:
|
2024-03-29 00:33:56 +00:00
|
|
|
* call ace_frag_fnc_dev_clearTraces
|
2024-01-08 21:22:52 +00:00
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
2024-01-15 23:54:22 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
deleteVehicle _x;
|
|
|
|
} forEach GVAR(dev_eventSpheres);
|
2024-01-18 21:10:31 +00:00
|
|
|
|
2024-01-15 19:13:59 +00:00
|
|
|
GVAR(dev_eventSpheres) = [];
|
2024-01-08 21:22:52 +00:00
|
|
|
|
2024-01-15 19:13:59 +00:00
|
|
|
GVAR(dev_trackLines) = createHashMap;
|
2024-01-15 20:27:29 +00:00
|
|
|
GVAR(dev_hitBoxes) = createHashMap;
|