New Unity GUI has messed up the scene camera

I added a GUI panel, and changed it to Screen Space - Camera, now the scene camera starts making things invisible when I get within about 10 meters of them. Here is a screenshot:

What should I do to fix this?

it looks like the clipping plane in the Camera / or possibly that the new GUI’s Rect is visible in scene view but not during play - hard to tell from the shot

~be

The SceneView camera works as both, a FPS camera and an orbitting camera. For this purpose there’s a hidden pivot point in the front of your SceneView camera. If you move around (with right mouse button + W A S D ) you move the pivot with you at a constant distance in front of you. On the other hand when holding ALT down and use the left mouse button you can orbit around that point. When you use your mouse wheel you actually change the distance to the pivot. Depending on the distance from the pivot the FOV of the SceneView camera is modified.

Try to selet a Gameobject in the hierarchy, mouse your mouse over the SceneView and press “f”. That will refocus the camera on that gameobject. It places the cameras pivot on the target object and tries to find a distance / FOV so the object is fully viewed.

Some time ago i’ve created a simple editor window that will draw a small cube at the SceneView’s pivot point. Just try it. With that cube visible it’s way easier to switch between FPS and orbit mode.

btw: If you create a new GameObject it will be placed at this pivot point.