I am using Babylon ES6 with Rollup, and I have no luck using the inspector.
I wanted to ask here before moving to webpack or just giving up on using the inspector all together. Everything else runs great.
Importing the inspector is the kiss of death.
import “@babylonjs/inspector”
Doing this requires to install React types and increase the build time by 3x. I get this error where it is still looking for the old BABYLON declaration and require. root[“INSPECTOR”] = factory(root[“BABYLON”], and a bunch of webpack text. The error says “require is not defined”
I read this forum post and concluded that I shouldn’t import the inspector. How to use Inspector with ES6 Modules
But activate it in the index.html and use the HTML script tag to use the inspector.
script src=“https://preview.babylonjs.com/babylon.js”>
script src=“https://preview.babylonjs.com/loaders/babylonjs.loaders.min.js”>
script src=“https://preview.babylonjs.com/gui/babylon.gui.min.js”>
script src=“https://preview.babylonjs.com/inspector/babylon.inspector.bundle.js”>/script>
let context;
function init() {
context = new game.MyGame();
context.initialize().then(() => {
context.getScene().debugLayer.show({
overlay: true,
globalRoot: document.getElementById('inspector')
});
});
}
Which would’ve been a great idea if it worked. I think it has something to do with the need for an ES6 inspector.
If this is possible to use Rollup and the inspector, any help would be great.
Thanks