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

7 lines
335 B
Plaintext

#include "script_component.hpp"
private ["_round"];
_round = _this select 0;
if(alive _round) then {
GVAR(trackedObjects) set[(count GVAR(trackedObjects)), _round];
[DFUNC(trackFragRound), 0, [_round, (getPosASL _round), (velocity _round), (typeOf _round), time, objNull, false, 0, 0]] call cba_fnc_addPerFrameHandler;
};