GetCameraViewMode: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with '__NOTOC__ {{Client function}} This function allows you to set the camera's view mode. This indicates at what distance the camera will follow the player. *'''Note:''' It currently…')
 
No edit summary
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Client function}}
{{Client function}}
This function allows you to set the camera's view mode. This indicates at what distance the camera will follow the player.
This function allows you to get the camera's view mode. This indicates at what distance the camera will follow the player.
*'''Note:''' It currently only returns vehicle view modes
*'''Note:''' It currently only returns vehicle view modes



Revision as of 19:59, 9 August 2010

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

  • Note: It currently only returns vehicle view modes

Syntax

int getCameraView (  )

Returns

Returns an int indicating the current camera view mode. Their meanings can be seen below.

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

Example

-- TODO

See Also