2024-01-11 20:01:50 +00:00
|
|
|
#include "..\script_component.hpp"
|
2024-01-08 21:22:52 +00:00
|
|
|
/*
|
|
|
|
* Author: Lambda.Tiger
|
|
|
|
* Cleares all dev spheres and traces
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* [] call ace_frag_fnc_dev_clearTraces;
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
2024-01-15 19:13:59 +00:00
|
|
|
for "_i" from 0 to count GVAR(dev_eventSpheres) - 1 do {
|
2024-01-08 21:22:52 +00:00
|
|
|
deleteVehicle (GVAR(dev_eventSpheres)#_i);
|
|
|
|
};
|
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-08 21:22:52 +00:00
|
|
|
GVAR(dev_hitBoxes) = createHashMap;
|