index-local.html 665 B

12345678910111213141516171819202122232425262728293031
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Node Material Editor - Local Development</title>
  5. <script src="https://code.jquery.com/pep/0.4.2/pep.min.js"></script>
  6. <script src="../../Tools/DevLoader/BabylonLoader.js"></script>
  7. <style>
  8. html,
  9. body {
  10. width: 100%;
  11. height: 100%;
  12. padding: 0;
  13. margin: 0;
  14. overflow: hidden;
  15. }
  16. </style>
  17. </head>
  18. <body>
  19. <script>
  20. // Load the scripts + map file to allow vscode debug.
  21. BABYLONDEVTOOLS.Loader
  22. .require("index")
  23. .load();
  24. </script>
  25. </body>
  26. </html>