0
\$\begingroup\$

I've attempted looking into this via. the Unity Manual, and even posts on the Unity forum, although I've found nothing. I have already tried checking Occlusion Culling and general Object Culling.

I've skimmed through the settings as well, and found nothing I figured was related to why my camera is behaving like this. (near the bottom, where it abruptly cuts off.)

Camera behavior

\$\endgroup\$

2 Answers 2

3
\$\begingroup\$

In Unity 2021.3, you can adjust the clipping planes for the Scene view like this:

enter image description here

  1. In the Scene view, click the Camera button
  2. Deselect "Dynamic Clipping"
  3. Edit the Near and Far clipping planes as needed (in your case, reduce the Near plane).

The procedure may vary in other versions of Unity.

\$\endgroup\$
1
\$\begingroup\$

Just change the cameras clipping planes:

enter image description here

if you decrease the near plane, parts close to the camera will be rendered, its mostly there so that if for example, you put the camera inside the head of a player, the model doesnt block the view.

\$\endgroup\$
7
  • 3
    \$\begingroup\$ Note that the GPU depth buffer covers the range from near to far clipping plane. If you decrease the near plane, you should ideally also decrease the far plane (eg divide both by 10). Otherwise, if the range is too large, you can get z-fighting issues. \$\endgroup\$ Commented Mar 15, 2024 at 19:13
  • \$\begingroup\$ The issue in the screenshot seems to he with the scene view camera in editor, rather than the camera component rendering the game view. \$\endgroup\$ Commented Mar 18, 2024 at 10:47
  • \$\begingroup\$ @DMGregory true, didn't think about that, in that case I don't know. But if it doesnt effect the game I don't see why it would matter that much. The camera likely clips to avoid the view being blocked. \$\endgroup\$ Commented Mar 18, 2024 at 10:53
  • \$\begingroup\$ You don't see why it should matter if the person editing the level can't see what they're doing? \$\endgroup\$ Commented Mar 18, 2024 at 10:54
  • 1
    \$\begingroup\$ If it is a big issue, this may fix it: forum.unity.com/threads/… \$\endgroup\$ Commented Mar 18, 2024 at 10:59

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.