EngineSetFramePosition: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 44: Line 44:
==See Also==
==See Also==
{{Engine_functions}}
{{Engine_functions}}
{{Needs Example}}
[[Category:Needs Example]]

Revision as of 09:37, 16 September 2012

This function set frame position for vehicle element.


Syntax

bool engineSetFramePosition ( vehicle theVehicle, string
theComponent, float fX, float fY, float fZ )

Required Arguments

  • theVehicle: The vehicle you wish to set frame position.
  • theComponent: A component.
  • fX: X axis.
  • fY: Y axis.
  • fZ: Z axis.


List of components:

  • special_1
  • special_2
  • special_3
  • special_4
  • special_5
  • bonnet
  • boot
  • bumper_1
  • bumper_2
  • chassis
  • door_1
  • door_2
  • door_3
  • door_4
  • exhaust
  • windscreen


Return

Return true if frame position was set successfully, false otherwise.

See Also