Open sjpt opened 7 years ago
+1. In Dev Tools i'm accomplishing this with a script like:
function printGraph( obj ) {
console.group( ' <' + obj.type + '> ' + obj.name );
obj.children.forEach( printGraph );
console.groupEnd();
}
printGraph(scene);
It would be helpful if the hierarchy displayed the object type (object.type) rather than always displaying 'Object3D'.