Arma Reforger Explorer  1.1.0.42
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
CameraManager.c
Go to the documentation of this file.
1 /*
2 ===========================================
3 Do not modify, this script is generated
4 ===========================================
5 */
6 
12 class CameraManagerClass: GenericEntityClass
13 {
14 }
15 
16 class CameraManager: GenericEntity
17 {
19  proto external CameraBase CurrentCamera();
24  proto external bool SetCamera(CameraBase pCam);
26  proto external void SetNextCamera();
28  proto external void SetPreviousCamera();
34  proto external int GetCamerasList(out notnull array<CameraBase> outCameras);
39  proto external void SetOverlayCamera(CameraBase pCam);
44  proto external CameraBase GetOverlayCamera();
48  proto external void SetFirstPersonFOV(float fieldOfView);
52  proto external float GetFirstPersonFOV();
56  proto external void SetThirdPersonFOV(float fieldOfView);
60  proto external float GetThirdPersonFOV();
64  proto external void SetVehicleFOV(float fieldOfView);
68  proto external float GetVehicleFOV();
72  proto external float GetClampedFOV(float fieldOfView);
76  proto external float GetMinFOV();
80  proto external float GetMaxFOV();
81 
82  // callbacks
83 
87  event protected void OnInit();
88 }
89 
SetThirdPersonFOV
proto external void SetThirdPersonFOV(float fieldOfView)
GetMinFOV
proto external float GetMinFOV()
SetNextCamera
proto external void SetNextCamera()
Set the next camera in the list as current camera.
SetOverlayCamera
proto external void SetOverlayCamera(CameraBase pCam)
GetCamerasList
proto external int GetCamerasList(out notnull array< CameraBase > outCameras)
GetOverlayCamera
proto external CameraBase GetOverlayCamera()
GenericEntity
SCR_GenericBoxEntityClass GenericEntity
SetCamera
proto external bool SetCamera(CameraBase pCam)
SetPreviousCamera
proto external void SetPreviousCamera()
Set the previous camera in the list as current camera.
GetFirstPersonFOV
proto external float GetFirstPersonFOV()
SetFirstPersonFOV
proto external void SetFirstPersonFOV(float fieldOfView)
CameraManagerClass
Definition: CameraManager.c:12
GetClampedFOV
proto external float GetClampedFOV(float fieldOfView)
CurrentCamera
CameraManagerClass GenericEntityClass CurrentCamera()
Returns the current camera.
GetThirdPersonFOV
proto external float GetThirdPersonFOV()
OnInit
event protected void OnInit()
GetMaxFOV
proto external float GetMaxFOV()
SetVehicleFOV
proto external void SetVehicleFOV(float fieldOfView)
GetVehicleFOV
proto external float GetVehicleFOV()