ACE3/addons/frag/functions/fnc_dev_trackTrace.sqf

28 lines
563 B
Plaintext
Raw Permalink Normal View History

#include "..\script_component.hpp"
/*
* Author: ACE-Team
* Dev things
*
* Arguments:
* None
*
* Return Value:
* None
*
* Example:
* call ace_frag_fnc_dev_trackTrace
*
* Public: No
*/
params ["_args", "_pfhID"];
_args params ["_tracerObj", "_index"];
2016-05-30 16:37:03 +00:00
if (alive _tracerObj && {GVAR(traces) isNotEqualTo []}) then {
private _data = GVAR(traces) select _index;
private _positions = _data select 4;
_positions pushBack [getPos _tracerObj, vectorMagnitude (velocity _tracerObj)];
2016-05-30 16:37:03 +00:00
} else {
[_pfhID] call CBA_fnc_removePerFrameHandler;
2016-05-30 16:37:03 +00:00
};