GetCameraFieldOfView: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
Line 14: Line 14:
** "vehicle_max": the max the field of view can go to when the vehicle is moving at a high speed (must be higher than "vehicle")
** "vehicle_max": the max the field of view can go to when the vehicle is moving at a high speed (must be higher than "vehicle")


===Returns===
===Visszatérési érték===
Returns one float - the field of view angle
Visszatérési értéke egy float - látómező szöge


==Example==
==Example==

Revision as of 14:53, 13 August 2018

This function returns the field of view of the dynamic camera as set by setCameraFieldOfView.

Syntax

float getCameraFieldOfView ( string cameraMode )

OOP Syntax Help! I don't understand this!

Method: Camera.getFieldOfView(...)
Variable: .fov
Counterpart: setCameraFieldOfView


Required Arguments

  • cameraMode: the camera mode to get the field of view of
    • "player": whilst walking/running
    • "vehicle": whilst in vehicle
    • "vehicle_max": the max the field of view can go to when the vehicle is moving at a high speed (must be higher than "vehicle")

Visszatérési érték

Visszatérési értéke egy float - látómező szöge

Example

In this example, the field of view is output to the chat whenever the /getfov command is written

function getCamFOV()
    outputChatBox("The camera field of view for 'player walking/running' is: " .. getCameraFieldOfView("player"))
end
addCommandHandler("getfov", getCamFOV)

See Also