isOnRoad: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(alt syntax, example, see also)
Line 7: Line 7:
____________________________________________________________________________________________
____________________________________________________________________________________________


| Check whether given position is on road. |= Description
| Checks if given object or position is on road. |= Description
____________________________________________________________________________________________
____________________________________________________________________________________________


| '''isOnRoad''' position or object |= Syntax
| '''isOnRoad''' object |= Syntax


|p1= position or object: [[Object]] or [[Array]] - |= PARAMETER1  
|p1= object: [[Object]]  |= PARAMETER1  


|p2= |= PARAMETER2  
|p2= |= PARAMETER2  
Line 20: Line 20:
| [[Boolean]] |= RETURNVALUE  
| [[Boolean]] |= RETURNVALUE  


|s2= '''isOnRoad''' position |= Syntax


|x1= <code>_ConeRoad <nowiki>=</nowiki> [[isOnRoad]] getPos cone1;</code>|= EXAMPLE1  
|p21= position: [[Array]] - format [[getPosATL]] (especially on bridges) |= PARAMETER1
 
|p22= |= PARAMETER2
 
|p3= |= PARAMETER3
 
| r2= [[Boolean]] |= RETURNVALUE
 
 
|x1= <code>_objOnRoad = [[isOnRoad]] [[player]];</code>|= EXAMPLE1
 
|x2= <code>_posOnRoad = [[isOnRoad]] [[getPosATL]] [[player]];</code>|= EXAMPLE1  


____________________________________________________________________________________________
____________________________________________________________________________________________


| |= SEEALSO  
| [[surfaceIsWater]] |= SEEALSO  


|  |= MPBEHAVIOUR  
|  |= MPBEHAVIOUR  

Revision as of 23:14, 22 August 2014

Hover & click on the images for description

Description

Description:
Checks if given object or position is on road.
Groups:
Uncategorised

Syntax

Syntax:
isOnRoad object
Parameters:
object: Object
Return Value:
Boolean

Alternative Syntax

Syntax:
isOnRoad position
Parameters:
position: Array - format getPosATL (especially on bridges)
Return Value:
Boolean

Examples

Example 1:
_objOnRoad = isOnRoad player;
Example 2:
_posOnRoad = isOnRoad getPosATL player;

Additional Information

See also:
surfaceIsWater

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