Is there an automated way to display a hierarchy of parts (model-tree) as a side menu that is similar to what Autodesk does with their online viewer?
You can use Object3D.traverse to generate a tree like that. (For the UI part - I don’t think there’s any ready solution from three - but you can easily combine traversing with ant or material)
2 Likes
Thank you for such a quick response! I will definitely work on this and see what I can pull together
You can checkout how the editor implements it outliner:
1 Like
Thank you, Mugen87- I will certainly do that!