forked from CombinedArmsGaming/CAFE3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinitPlayerLocal.sqf
More file actions
15 lines (14 loc) · 876 Bytes
/
initPlayerLocal.sqf
File metadata and controls
15 lines (14 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// -- Enable full spectator in respawn screen
// -- Courtesy of https://community.bistudio.com/wiki/Arma_3:_Respawn#Conflicts
{
missionNamespace setVariable [_x, true];
} forEach [
"BIS_respSpecAi", // Allow spectating of AI
"BIS_respSpecAllowFreeCamera", // Allow moving the camera independent from units (players)
"BIS_respSpecAllow3PPCamera", // Allow 3rd person camera
"BIS_respSpecShowFocus", // Show info about the selected unit (dissapears behind the respawn UI)
"BIS_respSpecShowCameraButtons", // Show buttons for switching between free camera, 1st and 3rd person view (partially overlayed by respawn UI)
"BIS_respSpecShowControlsHelper", // Show the controls tutorial box
"BIS_respSpecShowHeader", // Top bar of the spectator UI including mission time
"BIS_respSpecLists" // Show list of available units and locations on the left hand side
];