SetVehicleLinearVelocity: Difference between revisions
From Onset Developer Wiki
Created page with "{{Info|Function|Server|1.0}} {{FuncDescription|__EDIT_ME__}} {{FuncSyntax|SetVehicleLinearVelocity(vehicle, x, y, z [, reset])}} {{FuncParameters}} {{FuncParam|vehicle|__ED..." |
No edit summary |
||
Line 1: | Line 1: | ||
{{Info|Function|Server|1.0}} | {{Info|Function|Server|1.0}} | ||
{{FuncDescription| | {{FuncDescription|Set the vehicle's linear velocity.}} | ||
{{FuncSyntax|SetVehicleLinearVelocity(vehicle, x, y, z [, reset])}} | {{FuncSyntax|SetVehicleLinearVelocity(vehicle, x, y, z [, reset])}} | ||
{{FuncParameters}} | {{FuncParameters}} | ||
{{FuncParam|vehicle| | {{FuncParam|vehicle|The vehicle identifier.}} | ||
{{FuncParam|x| | {{FuncParam|x|The X axis velocity}} | ||
{{FuncParam|y| | {{FuncParam|y|The Y axis velocity}} | ||
{{FuncParam|z | | {{FuncParam|z |The Z axis velocity}} | ||
{{FuncParamOptional|reset|__EDIT_ME__}} | {{FuncParamOptional|reset|Boolean __EDIT_ME__}} | ||
{{FuncReturnValue| | {{FuncReturnValue|This function returns '''true'''.}} | ||
== Example == | == Example == | ||
<syntaxhighlight lang="Lua"> | |||
SetVehicleLinearVelocity(vehicleId, 100.0, 0.0, 0.0, false) | |||
-- Push the vehicle towards 100.0 units in X axis | |||
<syntaxhighlight> | |||
{{RelatedFunctions}} | {{RelatedFunctions}} | ||
{{VehicleFunctions}} |
Revision as of 19:27, 31 December 2019
Description
Set the vehicle's linear velocity.
Syntax
SetVehicleLinearVelocity(vehicle, x, y, z [, reset])
Parameters
- vehicle
The vehicle identifier. - x
The X axis velocity - y
The Y axis velocity - z
The Z axis velocity - reset (optional)
Boolean __EDIT_ME__
Return Value
- This function returns true.
Example
<syntaxhighlight lang="Lua"> SetVehicleLinearVelocity(vehicleId, 100.0, 0.0, 0.0, false) -- Push the vehicle towards 100.0 units in X axis <syntaxhighlight>
See also
- CreateVehicle
- DestroyVehicle
- IsValidVehicle
- GetVehicleCount
- GetAllVehicles
- GetVehicleModel
- GetVehicleModelName
- SetVehicleRespawnParams
- IsVehicleStreamedIn
- GetStreamedVehiclesForPlayer
- GetStreamedVehicles
- SetVehicleLocation
- GetVehicleLocation
- SetVehicleRotation
- GetVehicleRotation
- SetVehicleHeading
- GetVehicleHeading
- SetVehicleHealth
- GetVehicleHealth
- SetVehicleLicensePlate
- GetVehicleVelocity
- GetVehicleDriver
- GetVehiclePassenger
- GetVehicleNumberOfSeats
- SetVehicleColor
- GetVehicleColor
- SetVehicleLinearVelocity
- SetVehicleAngularVelocity
- GetVehicleGear
- SetVehicleHoodRatio
- GetVehicleHoodRatio
- SetVehicleTrunkRatio
- GetVehicleTrunkRatio
- StartVehicleEngine
- StopVehicleEngine
- GetVehicleEngineState
- SetVehicleLightEnabled
- GetVehicleLightState
- SetVehicleDamage
- GetVehicleDamage
- AttachVehicleNitro