mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
26 lines
390 B
Plaintext
26 lines
390 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;
|