ACE3/addons/goggles/functions/fnc_externalCamera.sqf
jonpas 4ff01967b6
Add Feature Camera Player EH and Handling (#6573)
* Switch to CBA Feature Camera handling

* Register ACE3's Feature Cameras

* Backwards compatiblity for old ace event

* Require CBA 3.9
2018-10-12 14:59:40 +02:00

27 lines
583 B
Plaintext

#include "script_component.hpp"
/*
* Author: Garth 'L-H' de Wet
* Returns if the camera is external or not.
*
* Arguments:
* None
*
* Return Value:
* Whether the camera is in external view or not. <BOOL>
*
* Example:
* call ace_goggles_fnc_externalCamera;
*
* Public: Yes
*/
// Handle the ThreeDen Editor Camera
if (is3DEN) exitWith {true};
private _isFeatureCamera = call CBA_fnc_getFeatureCameraActive != "";
if (GVAR(showInThirdPerson)) then {
cameraView in ["GROUP"] || _isFeatureCamera
} else {
cameraView in ["EXTERNAL", "GROUP"] || _isFeatureCamera
};