SetCameraFieldOfView: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
m (Fix example)
(Updated the page)
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{client function}}
{{client function}}
{{New feature/item|3.0150|1.5|7285|This function sets the field of view of the ''dynamic camera'' - this is the field of view of the ''non-fixed camera'' - yes, the camera that the user can control whilst on foot or in a vehicle. The higher the field of view angle, the more you will be able to see to your sides.}}
{{Disabled|This function and its pair [[getCameraFieldOfView]] were disabled on r7327. See [https://github.com/multitheftauto/mtasa-blue/commit/2f892d649af212e0a998a78695c96c09e0ee03a0 the commit] for details.}}
 
{{New items|3.0150|1.5|This function sets the field of view of the ''dynamic camera'' - this is the field of view of the ''non-fixed camera'' - yes, the camera that the user can control whilst on foot or in a vehicle. The higher the field of view angle, the more you will be able to see to your sides.|7285}}
==Syntax==
==Syntax==
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">

Revision as of 13:39, 11 July 2015

Dialog-warning.png Function has been disabled.

Reason/Note: This function and its pair getCameraFieldOfView were disabled on r7327. See the commit for details.


This function sets the field of view of the dynamic camera - this is the field of view of the non-fixed camera - yes, the camera that the user can control whilst on foot or in a vehicle. The higher the field of view angle, the more you will be able to see to your sides.

Syntax

bool setCameraFieldOfView ( float fieldOfView )

OOP Syntax Help! I don't understand this!

Note: This is under the static class Camera
Method: Camera.setFieldOfView(...)
Variable: .fov
Counterpart: getCameraFieldOfView


Required Arguments

Note: after 100, some unexpected things may happen to the camera, particularly in vehicles, use carefully!

  • fieldOfView: The field of view angle, 0 to 179.

Returns

Returns true if the arguments are valid, false otherwise.

Example

In this example, the field of view is set to 20 when the player joins.

function setCameraFOVOnResStart()
    setCameraFieldOfView(20)
end
addEventHandler("onClientResourceStart", resourceRoot, setCameraFOVOnResStart)

See Also