12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <!DOCTYPE html>
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>Node Material Editor - Local Development</title>
- <meta name="viewport" content="width=device-width, user-scalable=no">
- <link rel="shortcut icon" href="https://www.babylonjs.com/favicon.ico">
- <script src="https://code.jquery.com/pep/0.4.2/pep.min.js"></script>
- <script src="../../Tools/DevLoader/BabylonLoader.js"></script>
- <link rel="stylesheet" href="https://use.typekit.net/cta4xsb.css"></link>
- <style>
- html,
- body {
- width: 100%;
- height: 100%;
- padding: 0;
- margin: 0;
- overflow: hidden;
- }
- #host-element {
- width: 100%;
- height: 100%;
- }
- </style>
- </head>
- <body>
- <div id="host-element">
- </div>
- <script>
- // Load the scripts + map file to allow vscode debug.
- BABYLONDEVTOOLS.Loader
- .require("index.js")
- .load(() => {
- BABYLONDEVTOOLS.Loader.debugShortcut(engine);
- });
- </script>
- </body>
- </html>
|