mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
20 lines
391 B
Plaintext
20 lines
391 B
Plaintext
/*
|
|
Name: AGM_Goggles_fnc_ExternalCamera
|
|
|
|
Author: Garth de Wet (LH)
|
|
|
|
Description:
|
|
Returns if the camera is external or not.
|
|
|
|
Parameters:
|
|
Nothing
|
|
|
|
Returns:
|
|
Boolean - whether the camera is in external view or not.
|
|
|
|
Example:
|
|
call AGM_Goggles_fnc_ExternalCamera;
|
|
*/
|
|
if (profileNamespace getVariable ["AGM_showInThirdPerson", false]) exitWith { false };
|
|
(cameraView == "External")
|