Integrate threejs editor into a project

Hello. I am building a complex project and I think it would be really useful to have a GUI to view and modify the threejs Scene Graph. Is it possible to integrate the threejs editor into a project? How would one go about this? Thank you.

Well, you would have to copy all sources and dependencies/external libs into your project. You can then “inject” a scene to the editor for manipulation. Providing a scene is a similar process like importing 3D assets via drag’n’drop. Meaning you can use a SetSceneCommand in this way:

editor.execute( new SetSceneCommand( editor, scene ) );