override protected void OnUpdate (float factor, bool isFinished)
{
//This is altering the wrong camera property
//cachedCamera.fov = from * (1f - factor) + to * factor;
//This is what it should be doing
cachedCamera.orthographicSize = from * (1f - factor) + to * factor;
}