When camera is getting closer the model vanishes

Hello, At first I’d like to ensure you, that I tried to use:

base.camLens.setNear(0.001)

But it didn’t help (when I use lower value, everything is messed up).
Normally my scene looks like this:

But when camera comes a little closer:

The model starts gradually disappear. Don’t look at boy, he just shifted during making the screenshot.

What can I do to fix it?

I guess depend on frustum culling: try to disable it with this 2 lines on each of your actors:

avatar.node().setBounds(OmniBoundingVolume())
avatar.node().setFinal(True)

Works for me :wink: Thanks.