mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
24 lines
441 B
Plaintext
24 lines
441 B
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: Lambda.Tiger
|
|
* Cleares all dev spheres and traces
|
|
*
|
|
* Arguments:
|
|
* None
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [] call ace_frag_fnc_dev_clearTraces;
|
|
*
|
|
* Public: No
|
|
*/
|
|
GVAR(dev_trackLines) = createHashMap;
|
|
for "_i" from 0 to count GVAR(dev_eventSpheres) - 1 do
|
|
{
|
|
deleteVehicle (GVAR(dev_eventSpheres)#_i);
|
|
};
|
|
GVAR(dev_eventSpheres) = +[];
|
|
|
|
GVAR(dev_hitBoxes) = createHashMap; |