ACE3/addons/frag/functions/fnc_trackTrace.sqf
EpMAK 68d08b8c7b Revert "Translation"
This reverts commit fab5605ad5018ad9a96a19f2f974a4fcc4ef9f27.
2015-04-10 19:46:18 +03:00

14 lines
534 B
Plaintext

#include "script_component.hpp"
_params = _this select 0;
_tracerObj = _params select 0;
_index = _params select 1;
if(alive _tracerObj && (count GVAR(traces)) > 0) then {
_data = GVAR(traces) select _index;
_positions = _data select 4;
_objVel = velocity _tracerObj;
_objTVel = sqrt((_objVel select 0)^2 + (_objVel select 1)^2 + (_objVel select 2)^2);
_positions set[(count _positions), [(getPos _tracerObj), _objTVel]];
} else {
[(_this select 1)] call cba_fnc_removePerFrameHandler;
};