targets: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\{\{GameCategory\|(arma[0123])\|[ _]?New[ _]Scripting[ _]Commands[ _]List\}\}" to "{{GameCategory|$1|New Scripting Commands}}")
m (Text replacement - "_{10,} " to "")
Line 1: Line 1:
{{Command|Comments=
{{Command|Comments=
____________________________________________________________________________________________


| arma3 |Game name=
| arma3 |Game name=
Line 9: Line 8:


|gr1= Object Detection |GROUP1=
|gr1= Object Detection |GROUP1=
____________________________________________________________________________________________


| Retrives list of given unit targets matching specified filter. If the filter is not specified, all targets are returned.|=
| Retrives list of given unit targets matching specified filter. If the filter is not specified, all targets are returned.|=
____________________________________________________________________________________________


|  unit '''targets''' [enemyOnly, maxDistance, sides, maxAge, alternateCenter] |SYNTAX=
|  unit '''targets''' [enemyOnly, maxDistance, sides, maxAge, alternateCenter] |SYNTAX=
Line 31: Line 28:
| [[Array]] - unit's targets matching the criteria |RETURNVALUE=  
| [[Array]] - unit's targets matching the criteria |RETURNVALUE=  


____________________________________________________________________________________________


|x1= <code>_targets = _unit [[targets]] [false, 300, <nowiki>[east,sideEnemy]</nowiki>]; //all targets of east or renegade side in 300m</code> |Example1=
|x1= <code>_targets = _unit [[targets]] [false, 300, <nowiki>[east,sideEnemy]</nowiki>]; //all targets of east or renegade side in 300m</code> |Example1=
Line 37: Line 33:


|x3= <code>_targets = _unit [[targets]] []; //all targets</code> |EXAMPLE3=
|x3= <code>_targets = _unit [[targets]] []; //all targets</code> |EXAMPLE3=
____________________________________________________________________________________________


| [[nearTargets]], [[targetsQuery]], [[reveal]], [[side]] |SEEALSO=
| [[nearTargets]], [[targetsQuery]], [[reveal]], [[side]] |SEEALSO=

Revision as of 04:57, 17 January 2021

Hover & click on the images for description

Description

Description:
Retrives list of given unit targets matching specified filter. If the filter is not specified, all targets are returned.
Groups:
Object Detection

Syntax

Syntax:
unit targets [enemyOnly, maxDistance, sides, maxAge, alternateCenter]
Parameters:
unit: Object - unit which target knowledge is retrieved
[enemyOnly, maxDistance, sides, maxAge, alternateCenter]: Array
enemyOnly (Optional): Boolean - true to include only enemy targets, false to include all targets
maxDistance (Optional): Number - max. distance based on target's expected position (distance is measured in 2D); use 0 to ignore the maxDistance filter
sides (Optional): Array - array of accepted sides; use [] to ignore the side filter
maxAge (Optional): Number - max. target age, targets that are known to unit for longer then maxAge are ignored; use 0 to ignore the maxAge filter
alternateCenter (Optional): Array - alternate (2D or 3D) position used for distance check (distance is measured in 2D); if not specified unit position is being used
Return Value:
Array - unit's targets matching the criteria

Examples

Example 1:
_targets = _unit targets [false, 300, [east,sideEnemy]]; //all targets of east or renegade side in 300m
Example 2:
_targets = _unit targets [true, 300]; //enemy targets in 300m
Example 3:
_targets = _unit targets []; //all targets

Additional Information

See also:
nearTargetstargetsQueryrevealside

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

Notes

Bottom Section