unitsBelowHeight: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\|seealso= *\[\[([^ ]+)\]\], \[\[([^ ]+)\]\]" to "|seealso= $1 $2")
m (Some wiki formatting)
 
(5 intermediate revisions by the same user not shown)
Line 19: Line 19:
|gr2= Positions
|gr2= Positions


|descr= Returns units in group/array below given Above Terrain Level (ATL) height.
|descr= Returns units in group/array below given Above Terrain Level (ATL) altitude.
{{Feature | Informative | unit's ATL height can be found with {{ic|_height {{=}} ([[getPosATL]] _unit) [[select]] 2;}}}}
{{Feature|informative|an object's ATL altitude can be found with <sqf inline>_altitude = (getPosATL _obj) select 2;</sqf>.}}


|s1= units [[unitsBelowHeight]] height
|s1= units [[unitsBelowHeight]] height
Line 38: Line 38:
|r2= [[Array]] of [[Object]]s
|r2= [[Array]] of [[Object]]s


|x1= <code>_allOnGroudUnits = [[group]] [[player]] [[unitsBelowHeight]] 10;</code>
|x1= <sqf>_allOnGroudUnits = group player unitsBelowHeight 10;</sqf>


|x2= <code>_units = [[allUnits]] [[unitsBelowHeight]] 30;</code>
|x2= <sqf>_units = allUnits unitsBelowHeight 30;</sqf>


|seealso= [[allUnits]] [[getPosATL]], [[group]]
|seealso= [[allUnits]] [[getPosATL]] [[group]]
}}
}}

Latest revision as of 16:53, 1 July 2022

Hover & click on the images for description

Description

Description:
Returns units in group/array below given Above Terrain Level (ATL) altitude.
an object's ATL altitude can be found with _altitude = (getPosATL _obj) select 2;.
Groups:
Object DetectionPositions

Syntax

Syntax:
units unitsBelowHeight height
Parameters:
units: Array of Objects
height: Number - height above terrain level (PositionATL)
Return Value:
Array of Objects

Alternative Syntax

Syntax:
group unitsBelowHeight height
Parameters:
group: Group - AI group
height: Number - height above terrain level (PositionATL)
Return Value:
Array of Objects

Examples

Example 1:
_allOnGroudUnits = group player unitsBelowHeight 10;
Example 2:
_units = allUnits unitsBelowHeight 30;

Additional Information

See also:
allUnits getPosATL group

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