self:get_position

Client

Retrieves the local position of the vehicle wheel


Syntax

local position = self:get_position()

Parameters

No parameters are accepted by this function

Returns

TypeNameDescription
vector3positionCurrent local position as {x, y, z}

Examples

Get the local position of a vehicle wheel
local entity = physics.vehicle_wheel.create()
local position = entity:get_position()

core.engine.print("info", "Vehicle wheel position:", util.table.unpack(position))

On this page