SetVehicleModelExhaustFumesPosition: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "{{Client function}} __NOTOC__ {{New feature/item|3.0155|1.5.5|| This function sets the position of the exhaust fumes the vehicle model emits. Use setVehicleComponentPosition...")
 
No edit summary
Line 7: Line 7:
==Syntax==  
==Syntax==  
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
bool setVehicleModelExhaustFumesPosition(float posX, float posY, float posZ)
bool setVehicleModelExhaustFumesPosition(int modelID, float posX, float posY, float posZ)
</syntaxhighlight>
</syntaxhighlight>


===Parameters===
===Parameters===
* '''modelID''': The model ID which you want to apply the change to
* '''posX''', '''posY''', '''posZ''': The desired position
* '''posX''', '''posY''', '''posZ''': The desired position



Revision as of 16:46, 5 October 2017

This function sets the position of the exhaust fumes the vehicle model emits. Use setVehicleComponentPosition to adjust the exhaust position.

Syntax

bool setVehicleModelExhaustFumesPosition(int modelID, float posX, float posY, float posZ)

Parameters

  • modelID: The model ID which you want to apply the change to
  • posX, posY, posZ: The desired position

Returns

Returns true if everything went fine, false otherwise.

Example

Template:Needs example

See Also