Entity::getVelocity: Difference between revisions

From RAGE Multiplayer Wiki
No edit summary
No edit summary
Line 1: Line 1:
Get the velocity of the Entity


==Syntax==
==Syntax==

Revision as of 11:36, 30 November 2017

Get the velocity of the Entity

Syntax

entity.getVelocity();

Return value

  • Object Vector3

Example

let vehicle = mp.players.local.vehicle

let velocity = vehicle.getVelocity(); // returns a object with x, y , z

vehicle.setVelocity(velocity.x, velocity.y, velocity.z) // setting the velocity which we got.

See also