SetVehicleGravity

From Multi Theft Auto: Wiki
Revision as of 21:03, 14 June 2009 by Arc (talk | contribs) (New page: __NOTOC__ {{Client function}} Sets the gravity vector of a vehicle. The vehicle will fall in this direction, and the camera of any passengers will also be rotated to match it. Can be used...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Sets the gravity vector of a vehicle. The vehicle will fall in this direction, and the camera of any passengers will also be rotated to match it. Can be used for e.g. driving on walls or driving upside down.

Syntax

bool setVehicleGravity ( vehicle theVehicle, float x, float y, float z )

Required Arguments

  • theVehicle: the vehicle of which to change the gravity.
  • x, y, z: the components of the new gravity vector. If this vector has length 1, the strength of the gravity will be same as the global gravity for other entities. If it is 2, it will be twice as strong, etc.

Returns

Returns true if successful, false otherwise.

See Also