GetVehicleRotation: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
{{Needs_Checking|Does the function really start with a capital G? [[User:Erorr404|Erorr404]]}} | |||
__NOTOC__ | __NOTOC__ | ||
==Description== | ==Description== | ||
This function | This function gets the rotation of a vehicle along the X, Y, and Z axes in degrees. | ||
==Syntax== | ==Syntax== | ||
<syntaxhighlight lang="lua">GetVehicleRotation ( vehicle )</syntaxhighlight> | <syntaxhighlight lang="lua">float float float GetVehicleRotation ( vehicle )</syntaxhighlight> | ||
This function also has three variants that allow you to retrieve data from just one of the three | This function also has three variants that allow you to retrieve data from just one of the three axes. | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua">float GetVehicleRotationX ( vehicle )</syntaxhighlight> | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua">float GetVehicleRotationY ( vehicle )</syntaxhighlight> | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua">float GetVehicleRotationZ ( vehicle )</syntaxhighlight> | ||
===Required Arguments=== | ===Required Arguments=== | ||
*'''vehicle''': The [[vehicle]] whose rotation you want to retrieve. | *'''vehicle''': The [[vehicle]] whose rotation you want to retrieve. | ||
===Returns=== | |||
Returns three ''floats'' indicating the X, Y, and Z rotations of the vehicle in degrees (one ''float'' for a variant function), or ''false'' if the specified vehicle does not exist. | |||
==Example== | ==Example== | ||
<syntaxhighlight lang="lua">newcar = createVehicle ( 520, 1024, 1024, 1024 ) | This example creates a vehicle and gets it's rotation: | ||
<syntaxhighlight lang="lua">local newcar = createVehicle ( 520, 1024, 1024, 1024 ) -- create a Hydra | |||
local rx, ry, rz = GetVehicleRotation ( newcar ) -- get the vehicle's x, y, and z rotations and store them in rx, ry, and rz | |||
outputChatBox ( "Current rotation: " .. x .. " " .. y .. " " .. z ) -- output the rotations | |||
</syntaxhighlight> | |||
==See Also== | ==See Also== | ||
{{Vehicle functions}} | {{Vehicle functions}} |
Revision as of 04:12, 17 September 2006
This article needs checking. | |
Reason(s): Does the function really start with a capital G? Erorr404 |
Description
This function gets the rotation of a vehicle along the X, Y, and Z axes in degrees.
Syntax
float float float GetVehicleRotation ( vehicle )
This function also has three variants that allow you to retrieve data from just one of the three axes.
float GetVehicleRotationX ( vehicle )
float GetVehicleRotationY ( vehicle )
float GetVehicleRotationZ ( vehicle )
Required Arguments
- vehicle: The vehicle whose rotation you want to retrieve.
Returns
Returns three floats indicating the X, Y, and Z rotations of the vehicle in degrees (one float for a variant function), or false if the specified vehicle does not exist.
Example
This example creates a vehicle and gets it's rotation:
local newcar = createVehicle ( 520, 1024, 1024, 1024 ) -- create a Hydra local rx, ry, rz = GetVehicleRotation ( newcar ) -- get the vehicle's x, y, and z rotations and store them in rx, ry, and rz outputChatBox ( "Current rotation: " .. x .. " " .. y .. " " .. z ) -- output the rotations
See Also
- addVehicleUpgrade
- attachTrailerToVehicle
- blowVehicle
- createVehicle
- detachTrailerFromVehicle
- fixVehicle
- getOriginalHandling
- getTrainDirection
- getTrainPosition
- getTrainSpeed
- getTrainTrack
- getVehicleColor
- getVehicleCompatibleUpgrades
- getVehicleController
- getVehicleDoorOpenRatio
- getVehicleDoorState
- getVehicleEngineState
- getVehicleHandling
- getVehicleHeadLightColor
- getVehicleLandingGearDown
- getVehicleLightState
- getVehicleMaxPassengers
- getVehicleModelFromName
- getVehicleName
- getVehicleNameFromModel
- getVehicleOccupant
- getVehicleOccupants
- getVehicleOverrideLights
- getVehiclePaintjob
- getVehiclePanelState
- getVehiclePlateText
- getVehicleSirenParams
- getVehicleSirens
- getVehicleSirensOn
- getVehicleTowedByVehicle
- getVehicleTowingVehicle
- getVehicleTurretPosition
- getVehicleType
- getVehicleUpgradeOnSlot
- getVehicleUpgradeSlotName
- getVehicleUpgrades
- getVehicleVariant
- getVehicleWheelStates
- isTrainDerailable
- isTrainDerailed
- isVehicleBlown
- isVehicleDamageProof
- isVehicleFuelTankExplodable
- isVehicleLocked
- isVehicleOnGround
- isVehicleTaxiLightOn
- removeVehicleUpgrade
- setTrainDerailable
- setTrainDerailed
- setTrainDirection
- setTrainPosition
- setTrainSpeed
- setTrainTrack
- setVehicleColor
- setVehicleDamageProof
- setVehicleDoorOpenRatio
- setVehicleDoorState
- setVehicleDoorsUndamageable
- setVehicleEngineState
- setVehicleFuelTankExplodable
- setVehicleHandling
- setVehicleHeadLightColor
- setVehicleLandingGearDown
- setVehicleLightState
- setVehicleLocked
- setVehicleOverrideLights
- setVehiclePaintjob
- setVehiclePanelState
- setVehiclePlateText
- setVehicleSirens
- setVehicleSirensOn
- setVehicleTaxiLightOn
- setVehicleTurretPosition
- setVehicleVariant
- setVehicleWheelStates