roadsConnectedTo: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Add since template usage) |
Lou Montana (talk | contribs) m (Text replacement - "\[\[Category:[ _]?Scripting[ _]Commands[ _]Arma[ _]3(\|.*)\]\]" to "{{GameCategory|arma3|Scripting Commands}}") |
||
Line 46: | Line 46: | ||
<h3 style='display:none'>Bottom Section</h3> | <h3 style='display:none'>Bottom Section</h3> | ||
{{GameCategory|arma3|Scripting Commands}} | |||
[[Category:Scripting Commands Take On Helicopters|{{uc:{{PAGENAME}}}}]] | [[Category:Scripting Commands Take On Helicopters|{{uc:{{PAGENAME}}}}]] |
Revision as of 05:37, 9 January 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] Template:since
- 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