mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
ffaa195fe5
* Fixed headers to work with silentspike python script * Fixed rest of the files * Fixed ace-team
29 lines
561 B
Plaintext
29 lines
561 B
Plaintext
/*
|
|
* Author: ACE-Team
|
|
* Dev things
|
|
*
|
|
* Arguments:
|
|
* None
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* call ace_frag_fnc_dev_trackTrace
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
#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;
|
|
};
|