GetVehicleTurnVelocity: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
{{Server client function}} | {{Server client function}} | ||
__NOTOC__ | __NOTOC__ | ||
This function is used to retrieve a vehicle's turning velocity for each axis. | |||
This | |||
==Syntax== | ==Syntax== | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
float float float getVehicleTurnVelocity ( vehicle theVehicle ) | float float float getVehicleTurnVelocity ( vehicle theVehicle ) | ||
Line 11: | Line 9: | ||
===Required Arguments=== | ===Required Arguments=== | ||
*'''theVehicle:''' The [[vehicle]] you wish to get the turning velocities of. | |||
*''' | |||
===Returns=== | ===Returns=== | ||
Returns 3 ''floats'' that represent the vehicle's turning velocity on the x, y and z axis. | |||
==Example== | ==Example== | ||
This | This page does not currently have an example | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
-- | --enter an example here | ||
</syntaxhighlight> | </syntaxhighlight> | ||
==See Also== | ==See Also== | ||
{{ | {{Vehicle Functions}} | ||
[[Category: | [[Category:Needs_Example]] |
Revision as of 16:52, 27 August 2007
This function is used to retrieve a vehicle's turning velocity for each axis.
Syntax
float float float getVehicleTurnVelocity ( vehicle theVehicle )
Required Arguments
- theVehicle: The vehicle you wish to get the turning velocities of.
Returns
Returns 3 floats that represent the vehicle's turning velocity on the x, y and z axis.
Example
This page does not currently have an example
--enter an example here