mirror of
https://github.com/valmojr/armatak.git
synced 2026-06-14 09:43:29 +00:00
added mavlink cot parsing functions
This commit is contained in:
9
addons/main/functions/api/fn_set_uas_camera_override.sqf
Normal file
9
addons/main/functions/api/fn_set_uas_camera_override.sqf
Normal file
@@ -0,0 +1,9 @@
|
||||
params ["_drone", ["_cameraData", []]];
|
||||
|
||||
if (isNull _drone) exitWith {};
|
||||
|
||||
if ((_cameraData isEqualType []) && {(count _cameraData) >= 6}) then {
|
||||
_drone setVariable ["armatak_uas_camera_data_override", _cameraData + [serverTime], false];
|
||||
} else {
|
||||
_drone setVariable ["armatak_uas_camera_data_override", nil, false];
|
||||
};
|
||||
Reference in New Issue
Block a user