SetVehicleLinearVelocity

From Onset Developer Wiki
Revision as of 19:27, 31 December 2019 by 28days (talk | contribs)
SetVehicleLinearVelocity

Type: Function
Context: Server
Introduced: v1.0

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