Camera is not showind anything except floor

Hello Guys,

im kinda new and i dont have much experience in working with unity itself.

I added some terrain to my project and since then my camera started to be focused on the ground when i enter the game mode and i cannot change the camera view.

When im in the scene view everything is fine:

but when i enter Game mode the camera isnt showing anything anymore:

So i thought its a layer problem but all layers are shown. Im really desperate …

Hi @MGutsmiedl,
It looks like that the scene is being rendered in the camera named “Camera”. This can happen even if you have your Main Camera tagged as MainCamera.
As far as I know. the way to be sure of what camera should render is with a script. This would be an example:

public Camera cam0;
public Camera cam1;

private void Start() {
    cam0.enabled = true;
    cam1.enabled = false;
}

Hope it helps!