IsVehicleOnGround: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
No edit summary
Line 12: Line 12:


===Returns===
===Returns===
Returns ''true'' if vehicle is on the ground, ''false'' otherwise.
Returns ''true'' if vehicle is on the ground, ''false'' if it is not.


==Example==  
==Example==  
<!-- Explain what the example is in a single sentance -->
This page does not have an example.
This example does...
<!-- Add the code below, an emphasis should be on making it clear, not optimized. You could provide two versions if you wish, one clear and well commented, the other optimized -->
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
--This line does...
--add an example here
blabhalbalhb --abababa
--This line does this...
mooo
</syntaxhighlight>
</syntaxhighlight>


==See Also==
==See Also==
{{Vehicle functions}}
{{Vehicle functions}}
[[Category:Incomplete]] -- leave this unless you complete the function
[[Category:Needs_Example]]

Revision as of 16:53, 29 August 2007

Checks to see if a vehicle has contact with the ground.

Syntax

bool isVehicleOnGround ( vehicle theVehicle )

Required Arguments

  • theVehicle: The vehicle you wish to check.

Returns

Returns true if vehicle is on the ground, false if it is not.

Example

This page does not have an example.

--add an example here

See Also