Skip to content

Instantly share code, notes, and snippets.

@De-Panther
Last active January 30, 2024 06:23
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save De-Panther/19a036d1b6f8aefb79d8049e24fc1516 to your computer and use it in GitHub Desktop.
Save De-Panther/19a036d1b6f8aefb79d8049e24fc1516 to your computer and use it in GitHub Desktop.
Code snippet for loading SpectorJS in WebGL page. Copy this code to the development console of a web page with WebGL content. Make sure that you are posting it in the right context(if the canvas is inside an iframe).
var newScript = document.createElement("script");
newScript.onload = function() {
var spector = new SPECTOR.Spector();
spector.displayUI();
};
document.head.appendChild(newScript);
newScript.src = "https://spectorcdn.babylonjs.com/spector.bundle.js";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment