roadsConnectedTo: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - " \|([ps][0-9]+) *= " to " |$1= ") |
Lou Montana (talk | contribs) m (Text replacement - "<tt>([a-zA-Z0-9\. _"']+)<\/tt>" to "{{hl|$1}}") |
||
Line 16: | Line 16: | ||
|descr= Find the road segments connected to the given road segment. | |descr= Find the road segments connected to the given road segment. | ||
{{Feature |Important|Pedestrian roads such as | {{Feature |Important|Pedestrian roads such as {{hl|"TRAIL"}}s are missing connection information by design, therefore basic command will return empty array for those. Use the alternative syntax to return pedestrian roads.}} | ||
|s1= [[roadsConnectedTo]] roadSegment | |s1= [[roadsConnectedTo]] roadSegment |
Revision as of 23:44, 15 November 2021
Description
- Description:
- Find the road segments connected to the given road segment.
- Groups:
- Roads and Airports
Syntax
- Syntax:
- roadsConnectedTo roadSegment
- Parameters:
- roadSegment: Object - Road segment
- Return Value:
- Array of Objects - Connected road segments
Alternative Syntax
- Syntax:
- roadsConnectedTo [roadSegment, extended]
- Parameters:
- roadSegment: Object - Road segment
- extended: Boolean - (Optional, default false) When true, performs a more thorough search on top of base behaviour, slower but returns pedestrian and other missing road segments
- Return Value:
- Array of Objects - Connected road segments
Examples
- Example 1:
_road = (player nearRoads 50) select 0; _connectedRoads = roadsConnectedTo _road;
- Example 2:
_road = (player nearRoads 50) select 0; _connectedRoadsIncPedestrian = roadsConnectedTo [_road, true];
Additional Information
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