0

Some links tend to not be displayed depending on the camera position.

The problem is visible on this demo when you zoom in a lot (like in the picture). missing_links Have you any idea to solved it ?

Matthieu
  • 221
  • 1
  • 11

1 Answers1

1

Your camera near plane is at 0.1 but the far plane value is very large. Try lowering it.

gaitat
  • 12,449
  • 4
  • 52
  • 76
  • Thx for advice, but it doesn't help. With low far plane no change except if I zoom out, links are not visible more quickly. Links that disappear are usually those with nodes ends out of the camera. – Matthieu Oct 22 '14 at 14:25
  • 1
    as suggested at http://stackoverflow.com/questions/21184061/mesh-suddenly-disappears-in-three-js-clipping there is an `Object3D` property called `frustumCulled`. Try setting it to false. – gaitat Oct 22 '14 at 14:43
  • That's great with this. Thx gaitat ! – Matthieu Oct 22 '14 at 15:36