void CreateWhiteScreenShot(int i)
        {
            CommentBoxSceneGUI.Disable();
            var helpers = FindObjectsOfType <BlockoutHelper>().ToList();

            helpers.ForEach(x => x.HideLockedState());

            BlockoutStaticFunctions.ApplyNewMaterialSchemeWithoutUndo(screenshotWhiteMaterial, blockoutHierarchy.root.gameObject);

            CaptureScreenShot(i);

            BlockoutStaticFunctions.ApplyCurrentTheme();
            helpers.ForEach(x => x.ShowLockedState());
        }