2015-01-11 16:42:31 +00:00
|
|
|
/*
|
2015-02-02 09:04:53 +00:00
|
|
|
* 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. If the "showInThirdPerson" option is checked, this will always return false. <BOOL>
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* call ace_goggles_fnc_removeRainEffect;
|
|
|
|
*
|
|
|
|
* Public: Yes
|
|
|
|
*/
|
2015-01-18 21:50:45 +00:00
|
|
|
#include "script_component.hpp"
|
2015-01-22 22:58:11 +00:00
|
|
|
|
2015-01-30 22:19:45 +00:00
|
|
|
if (GVAR(showInThirdPerson)) exitWith { false };
|
2015-04-10 18:05:33 +00:00
|
|
|
(cameraView == "EXTERNAL" || cameraView == "GROUP")
|