SetCameraViewMode

From Multi Theft Auto: Wiki
Revision as of 05:31, 8 April 2021 by IDannz (talk | contribs) (add ped camera modes)
Jump to navigation Jump to search

Now you can change the camera mode when the player is not inside a vehicle.

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

Syntax

bool setCameraViewMode ( int vehicleCameraMode [, int pedCameraMode ] )

OOP Syntax Help! I don't understand this!

Method: Camera.setCameraViewMode(...)
Variable: .viewMode
Counterpart: getCameraViewMode


Required Arguments

  • vehicleCameraMode: The view mode you wish to use when inside vehicles.

Optional Arguments

  • pedCameraMode: The view mode you wish to use when you are not inside vehicles.

Vehicle Modes:

  • 0: Bumper
  • 1: Close external
  • 2: Middle external
  • 3: Far external
  • 4: Low external
  • 5: Cinematic

Ped Modes:

  • 1: Close
  • 2: Middle
  • 3: Far

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", localPlayer, function()
  setCameraViewMode(0)
end)

See Also