private void SetUpNewLevel()
    {
        postGame.SetMainCamActive(false);

        if (levelManager.level == 2) // check for boss level
        {
            postGame.PlayBossIntermission();
        }
        else
        {
            postGame.DisplayIntermission();
        }
    }