mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
49b5a0ea86
* Cleanup frag component * Optimize fnc_addTrack * Add additional cleanup * Please work? * Add more cleanup * Fix script errors * Fix/optimize spalling * Add missing changes
13 lines
398 B
Plaintext
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;
|
|
};
|