0

We are currently consuming utilizing the Forge Viewer in our product and also have an extension that allows us to interact with the Viewer. If we have already isolated some nodes on a loaded model, and then go to hide the entire model, the IsolateNodes property on the model's visibility manager is not updated. It continues to have the ids of the nodes that were previously isolated.

What can i do to have the IsolatedNodes property updated?

FYI....

  • The call we make to hide the entire model is as follows: "model.visbilityManager.hide(model.getRootId());"

  • The viewer3D.js version we are currently utilizing is v3.3.5

1 Answers1

0

With the information from your question, I would say that you haven't fully unloaded the model or need to finish the viewer. One suggestion can be:

viewer.tearDown()
viewer.finish()
viewer = null
Augusto Goncalves
  • 8,493
  • 2
  • 17
  • 44