SetCameraViewMode

From Multi Theft Auto: Wiki

Jump to: navigation, search

This function allows you to set the camera's view mode. This indicates at what distance the camera will follow the player.

  • Note: It can currently only set vehicle view modes

Syntax

bool setCameraViewMode ( int viewMode )

Required Arguments

  • viewMode: The view mode you wish to use
  • 0: Bumper
  • 1: Close external
  • 2: Middle external
  • 3: Far external
  • 4: Low external
  • 5: Cinematic

Returns

Returns true if the view was set correctly, false otherwise.

Example

This example sets the camera to bumper view when the local player enters any vehicle.

addEventHandler("onClientPlayerVehicleEnter", getLocalPlayer(), function()
  setCameraViewMode(0)
end)

See Also