ACE3/addons/frag/functions/fnc_dev_trackTrace.sqf
PabstMirror 8d43b899e6 Frag - Cleanup and Performance (#5010)
* Frag - Cleanup and Performance

* Add dots
2017-04-11 10:33:56 -05:00

13 lines
398 B
Plaintext

#include "script_component.hpp"
params ["_args", "_pfhID"];
_args params ["_tracerObj", "_index"];
if (alive _tracerObj && {!(GVAR(traces) isEqualTo [])}) then {
private _data = GVAR(traces) select _index;
private _positions = _data select 4;
_positions pushBack [getPos _tracerObj, vectorMagnitude (velocity _tracerObj)];
} else {
[_pfhID] call CBA_fnc_removePerFrameHandler;
};