mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
742626ff1a
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
39 lines
735 B
Plaintext
39 lines
735 B
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: Jonpas
|
|
* Change camera based on setting.
|
|
*
|
|
* Arguments:
|
|
* 0: New Camera View <STRING>
|
|
* 1: Vehicle <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* ["INTERNAL", vehicle] call ace_viewrestriction_fnc_changeCamera
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["_newCameraView", "_cameraOn"];
|
|
|
|
if (! ([_newCameraView, _cameraOn] call FUNC(canChangeCamera))) exitWith {};
|
|
|
|
TRACE_1("View Restricted",XGVAR(mode));
|
|
|
|
// FirstPerson
|
|
if (XGVAR(mode) == 1) exitWith {
|
|
_cameraOn switchCamera "INTERNAL";
|
|
};
|
|
|
|
// ThirdPerson
|
|
if (XGVAR(mode) == 2) exitWith {
|
|
_cameraOn switchCamera "EXTERNAL";
|
|
};
|
|
|
|
// Selective
|
|
if (XGVAR(mode) == 3) exitWith {
|
|
[_cameraOn] call FUNC(selectiveChangeCamera);
|
|
};
|