jeromeetienne / threejs-inspector

chrome devtool extension to debug three.js
https://chrome.google.com/webstore/detail/threejs-inspector/dnhjfclbfhcbcdfpjaeacomhbdfjbebi
198 stars 46 forks source link

Inspecting scene inside iframe #36

Open dschu-lab opened 5 years ago

dschu-lab commented 5 years ago

Hi,

I'm wondering if it may possible to inspect a scene that is rendered inside an iframe (same origin). I tried exporting the scene & THREE using the following:

window.parent.scene = this.scene;
window.parent.THREE = THREE;

But the inspector responds with in 00-injected_script-init.js: three.js is NOT present., even though I can do things like const test = new THREE.MeshBasicMaterial() and such inside the console.