mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
1c6c4d6bff
* Fix Brackets around code * Update fnc_handleFired.sqf * Shouldn't have changed this one --------- Co-authored-by: Grim <69561145+LinkIsGrim@users.noreply.github.com>
39 lines
732 B
Plaintext
39 lines
732 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);
|
|
};
|