GetVehicleModelExhaustFumesPosition: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 2: Line 2:
__NOTOC__
__NOTOC__
{{New feature/item|3.0155|1.5.5|11702|
{{New feature/item|3.0155|1.5.5|11702|
This function returns the position of the exhaust fumes the vehicle model emits. Use [[setVehicleComponentPosition]] to adjust the exhaust position.
This function returns the position of the exhaust fumes the vehicle model emits.
}}
}}



Revision as of 10:45, 6 July 2018

This function returns the position of the exhaust fumes the vehicle model emits.

Syntax

float, float, float getVehicleModelExhaustFumesPosition ( int modelID )

Parameters

  • modelID: The vehicle model ID

Returns

Returns the position of the exhaust fumes if everything went fine or false otherwise.

Example

local x, y, z = getVehicleModelExhaustFumesPosition( 411 ) -- Get its exhaust fumes position
setVehicleModelExhaustFumesPosition( 411, x, y, z + 1 ) -- Set its exhaust fumes position
local vehicle = createVehicle( 411, 0, 0, 3 ) -- Create a vehicle

See Also

Shared