You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I played for a bit, new map loaded, and I went spectator and minimized the game, then came back to watch as spectator, but pressing the right mouse key didn't temp-disable the cinematic camera.
Maybe something wrong with conditions in PlayerCamera.as
//right click to toggle cinematic camera
CControls@ controls = getControls();
if (
v_camera_cinematic && //user didn't perma disable
controls !is null && //controls exist
controls.isKeyJustPressed(KEY_RBUTTON) && //right clicked
(spectatorTeam || getLocalPlayerBlob() is null) && //is in spectator or dead
getGameTime() > deathTime)
{
The text was updated successfully, but these errors were encountered:
Description
I played for a bit, new map loaded, and I went spectator and minimized the game, then came back to watch as spectator, but pressing the right mouse key didn't temp-disable the cinematic camera.
Maybe something wrong with conditions in
PlayerCamera.as
The text was updated successfully, but these errors were encountered: