12345678910111213141516171819202122232425262728293031 |
- <!DOCTYPE html>
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>Node Material Editor - Local Development</title>
- <script src="https://code.jquery.com/pep/0.4.2/pep.min.js"></script>
- <script src="../../Tools/DevLoader/BabylonLoader.js"></script>
- <style>
- html,
- body {
- width: 100%;
- height: 100%;
- padding: 0;
- margin: 0;
- overflow: hidden;
- }
- </style>
- </head>
- <body>
- <script>
- // Load the scripts + map file to allow vscode debug.
- BABYLONDEVTOOLS.Loader
- .require("index")
- .load();
- </script>
- </body>
- </html>
|