private void SetAlternatingCamPersp(PerspectiveSwitcher.CubePerspective persp1, PerspectiveSwitcher.CubePerspective persp2)
    {
        if (CamPerspAlternate)
        {
            PerspectiveSwitcher.SetPerspective(persp1);

            CamPerspAlternate = false;
        }
        else
        {
            PerspectiveSwitcher.SetPerspective(persp2);

            CamPerspAlternate = true;
        }
    }
 private void SetCamPesp(PerspectiveSwitcher.CubePerspective newPerspective)
 {
     PerspectiveSwitcher.SetPerspective(newPerspective);
 }