Objects disappearing when too close

Downloaded the project and this was the problem:

You need to check that box to ensure that it doesn’t occlude the SkinnedMeshRenderer when the camera gets too close, I can’t say for sure what unity is using to determine that the object needs to be culled, since at least some part of the SkinnedMeshRenderer is still within the frustum so it doesn’t make a lot of sense, but that’s definitely the cause.

Keep in mind that these particular models have a ton of transforms which are it’s bones, and the SkinnedMeshRenderer appears to be buried down in Object_8.

image

So I move that script to the object 8 and that fixes it???

No, you simply need to check the box I circled, the SkinnedMeshRenderer component is already there, Unity adds it when you import a mesh as a rigged model.

THAT FIXED IT!!! the skinned mesh render fixed it! thank you so much todd!`

You’re welcome, glad to help!