Camera Problem (83486)

Hey, I have a problem where when the Camera is near a model it will go inside the model and the model then disappears. Here is an example of what I mean.

[16216-camera+glitch.png|16216]

I've been trying to resolve this problem, for months, with every project I create and my text would always come out to be null but this helped, thank you so much!!

1 Answer

1

How is this a glitch? Have you even LOOKED at the Camera component in the inspector?!

Clipping Planes
Near:
Far:

Abate the near so it doesn’t get CLIPPED OUT!

As @william9518 pointed out, this is not a glitch at all. What you are seeing is the near clipping plane of the camera intersecting the model. You can either constrain the distance that the camera can be from the object or modify the near clipping plane location in the camera settings. The reference manual has a good explanation of clip planes on this page: [Unity - Camera][1] [1]: http://docs.unity3d.com/Documentation//Components/class-Camera.html

Sorry about the harsh explanation. I was quite mad at that time.