Entity::position

From RAGE Multiplayer Wiki
Revision as of 14:39, 16 January 2018 by Toxsi (talk | contribs) (→‎Example)

This property is the position of a player.

Getter

  • Vector3

Setter

  • Vector3

Example

Server-Side

const playerPos = player.position
console.log(playerPos) // return e.g. {x: 1337, y: 228, z: 70}
player.position = new Vector3(0.0, 0.0, 72.0);

See Also