SetVehicleWheelsRotation: Difference between revisions
		
		
		
		
		
		Jump to navigation
		Jump to search
		
				
		
		
	
 (Created page with "re")  | 
				No edit summary  | 
				||
| Line 1: | Line 1: | ||
__NOTOC__  | |||
{{Client function}}  | |||
Allows the scripter to manipulate wheel rotation for vehicles. This function supports Automobiles, Bikes (Including BMX), and Trailers.  | |||
==Syntax==  | |||
<syntaxhighlight lang="lua">  | |||
bool setVehicleWheelsRotation ( vehicle vehicleElement, float rotation )  | |||
</syntaxhighlight>  | |||
{{OOP||[[vehicle]]:setVehicleWheelsRotation|vehicleWheelsRotation|getVehicleWheelsRotation}}  | |||
===Required Arguments===  | |||
* '''vehicleElement:''' the vehicle (Automobile, Bike, or Trailer) whose wheel rotation is to be set.  | |||
* '''rotation:''' the new wheel rotation value.  | |||
===Returns===  | |||
Returns ''true'' if successful, ''false'' otherwise.  | |||
==Example==  | |||
This example sets the wheel rotation of the vehicle the player is in, and also for any attached trailer.  | |||
<section name="Client" class="client" show="true">  | |||
<syntaxhighlight lang="lua">  | |||
addEventHandler("onClientVehicleEnter", getRootElement(),  | |||
    function()  | |||
        local theVeh = getPedOccupiedVehicle(localPlayer)  | |||
        if setVehicleWheelsRotation(theVeh, 0) then   | |||
            outputChatBox("SET OK")  | |||
        else  | |||
            outputChatBox("SET FAILED")  | |||
        end  | |||
    end  | |||
)  | |||
addEventHandler("onClientPreRender", root, function()  | |||
    local theVeh = getPedOccupiedVehicle(localPlayer)  | |||
    if theVeh then  | |||
        setVehicleWheelsRotation(theVeh, 0)  | |||
        -- also do it for trailer  | |||
        local trailer = getVehicleTowedByVehicle(theVeh)  | |||
        if trailer then  | |||
            setVehicleWheelsRotation(trailer, 0)  | |||
        end  | |||
    end  | |||
end)  | |||
</syntaxhighlight>  | |||
</section>  | |||
==See Also==  | |||
{{Client vehicle functions}}  | |||
Revision as of 05:21, 30 June 2024
Allows the scripter to manipulate wheel rotation for vehicles. This function supports Automobiles, Bikes (Including BMX), and Trailers.
Syntax
bool setVehicleWheelsRotation ( vehicle vehicleElement, float rotation )
OOP Syntax Help! I don't understand this!
- Method: vehicle:setVehicleWheelsRotation(...)
 - Variable: .vehicleWheelsRotation
 - Counterpart: getVehicleWheelsRotation
 
Required Arguments
- vehicleElement: the vehicle (Automobile, Bike, or Trailer) whose wheel rotation is to be set.
 - rotation: the new wheel rotation value.
 
Returns
Returns true if successful, false otherwise.
Example
This example sets the wheel rotation of the vehicle the player is in, and also for any attached trailer.
Click to collapse [-]
ClientaddEventHandler("onClientVehicleEnter", getRootElement(),
    function()
        local theVeh = getPedOccupiedVehicle(localPlayer)
        if setVehicleWheelsRotation(theVeh, 0) then 
            outputChatBox("SET OK")
        else
            outputChatBox("SET FAILED")
        end
    end
)
addEventHandler("onClientPreRender", root, function()
    local theVeh = getPedOccupiedVehicle(localPlayer)
    if theVeh then
        setVehicleWheelsRotation(theVeh, 0)
        -- also do it for trailer
        local trailer = getVehicleTowedByVehicle(theVeh)
        if trailer then
            setVehicleWheelsRotation(trailer, 0)
        end
    end
end)
See Also
- areVehicleLightsOn
 - getHeliBladeCollisionsEnabled
 - getVehicleAdjustableProperty
 - getVehicleComponentPosition
 - getVehicleComponentRotation
 - getVehicleComponents
 - getVehicleComponentScale
 - getVehicleComponentVisible
 - getVehicleCurrentGear
 - getVehicleDummyPosition
 - getVehicleGravity
 - getVehicleLandingGearDown
 - getVehicleModelDummyDefaultPosition
 - getVehicleModelDummyPosition
 - getVehicleModelExhaustFumesPosition
 - getVehicleModelWheelSize
 - getVehicleNitroCount
 - getVehicleNitroLevel
 - getVehicleWheelFrictionState
 - getVehicleWheelScale
 - isTrainChainEngine
 - isVehicleNitroActivated
 - isVehicleNitroRecharging
 - isVehicleOnGround
 - isVehicleWheelOnGround
 - isVehicleWindowOpen
 - resetVehicleComponentPosition
 - resetVehicleComponentRotation
 - resetVehicleComponentScale
 - resetVehicleDummyPositions
 - setHeliBladeCollisionsEnabled
 - setVehicleAdjustableProperty
 - setVehicleComponentPosition
 - setVehicleComponentRotation
 - setVehicleComponentScale
 - setVehicleComponentVisible
 - setVehicleDummyPosition
 - setVehicleGravity
 - setVehicleLandingGearDown
 - setVehicleModelDummyPosition
 - setVehicleModelExhaustFumesPosition
 - setVehicleModelWheelSize
 - setVehicleNitroCount
 - setVehicleNitroLevel
 - setVehicleWheelScale
 - setVehicleWheelStates
 - setVehicleWindowOpen
 - Shared
 - addVehicleUpgrade
 - addVehicleSirens
 - attachTrailerToVehicle
 - blowVehicle
 - createVehicle
 - detachTrailerFromVehicle
 - fixVehicle
 - getOriginalHandling
 - getTrainDirection
 - getTrainPosition
 - getTrainSpeed
 - getVehicleColor
 - getVehicleCompatibleUpgrades
 - getVehicleController
 - getVehicleDoorOpenRatio
 - getVehicleDoorState
 - getVehicleEngineState
 - getVehicleHandling
 - getVehicleHeadLightColor
 - getVehicleLandingGearDown
 - getVehicleLightState
 - getVehicleMaxPassengers
 - getVehicleModelFromName
 - getVehicleName
 - getVehicleNameFromModel
 - setVehicleNitroActivated
 - 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
 - removeVehicleSirens
 - setTrainDerailable
 - setTrainDerailed
 - setTrainDirection
 - setTrainPosition
 - setTrainSpeed
 - setVehicleColor
 - setVehicleDamageProof
 - setVehicleDoorOpenRatio
 - setVehicleDoorState
 - setVehicleDoorsUndamageable
 - setVehicleEngineState
 - setVehicleFuelTankExplodable
 - setVehicleHandling
 - setVehicleHeadLightColor
 - setVehicleLandingGearDown
 - setVehicleLightState
 - setVehicleLocked
 - setVehicleOverrideLights
 - setVehiclePaintjob
 - setVehiclePanelState
 - setVehiclePlateText
 - setVehicleSirens
 - setVehicleSirensOn
 - setVehicleTaxiLightOn
 - setVehicleTurretPosition
 - setVehicleVariant
 - setVehicleWheelStates