unitIsUAV: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Fix)
No edit summary
 
Line 8: Line 8:
|descr= Returns whether or not the given transport object is a drone (UAV, UGV), regardless of if it has a crew or if it is empty,
|descr= Returns whether or not the given transport object is a drone (UAV, UGV), regardless of if it has a crew or if it is empty,
corresponding to the <syntaxhighlight lang="cpp" inline>isUAV</syntaxhighlight> transport parameter.<br>
corresponding to the <syntaxhighlight lang="cpp" inline>isUAV</syntaxhighlight> transport parameter.<br>
{{GVI|arma3|2.14|size= 0.75}} The command can be used to check if the provided unit is a UAV unit or if that unit is remote-controlling a UAV unit.
{{GVI|arma3|2.14|size= 0.75}} The command can be used to check if the provided unit is a UAV unit.


|s1= [[unitIsUAV]] object
|s1= [[unitIsUAV]] object
Line 20: Line 20:
unitIsUAV driver _myUAV; // true (provided there is a driver)
unitIsUAV driver _myUAV; // true (provided there is a driver)
unitIsUAV gunner _myUAV; // true (provided there is a gunner)
unitIsUAV gunner _myUAV; // true (provided there is a gunner)
unitIsUAV player; // true if the player is remote-controlling a UAV, false otherwise
// technically, the UAV driver/gunner is the one being remote-controlled
</sqf>
</sqf>


|seealso= [[allUnitsUAV]]
|seealso= [[allUnitsUAV]]
}}
}}

Latest revision as of 09:34, 23 April 2023

Hover & click on the images for description

Description

Description:
Returns whether or not the given transport object is a drone (UAV, UGV), regardless of if it has a crew or if it is empty, corresponding to the isUAV transport parameter.
Arma 3 logo black.png2.14 The command can be used to check if the provided unit is a UAV unit.
Groups:
Remote Control

Syntax

Syntax:
unitIsUAV object
Parameters:
object: Object - vehicle or Arma 3 logo black.png2.14 unit
Return Value:
Boolean - true when UAV

Examples

Example 1:
unitIsUAV _myUAV; // true (whether it has driver/gunner or not) unitIsUAV driver _myUAV; // true (provided there is a driver) unitIsUAV gunner _myUAV; // true (provided there is a gunner)

Additional Information

See also:
allUnitsUAV

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note