stabalize a little more and do some debug drawing.

This commit is contained in:
jaynus 2015-04-03 14:28:12 -07:00
parent ced44f8a9d
commit 735384cdb4

View File

@ -66,7 +66,7 @@ FUNC(laserHudDesignatePFH) = {
["ace_fcs_forceUpdate", []] call ace_common_fnc_localEvent;
};
if( (str (getPosASL _laserTarget)) != str _pos) then {
if( ((getPosASL _laserTarget) vectorDistance _pos) > 2) then {
TRACE_1("LaserPos Update", "");
_laserTarget setPosATL (ASLToATL _pos);
@ -76,7 +76,13 @@ FUNC(laserHudDesignatePFH) = {
_args set[3, diag_tickTime + FCS_UPDATE_DELAY];
};
#ifdef DEBUG_MODE_FULL
drawIcon3D ["\a3\ui_f\data\IGUI\Cfg\Cursors\selectover_ca.paa", [1,0,0,1], ASLToATL _pos, 0.75, 0.75, 0, "", 0.5, 0.025, "TahomaB"];
drawIcon3D ["\a3\ui_f\data\IGUI\Cfg\Cursors\selectover_ca.paa", [1,0,0,1], (getPosATL _laserTarget), 0.75, 0.75, 0, "", 0.5, 0.025, "TahomaB"];
{
private["_position"];
_position = _x select 0;
drawLine3d [_povPos, _position, [0,0,1,1] ];
} forEach _resultPositions;
#endif
};
};