123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <!DOCTYPE html>
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>Babylon.js Sandbox - View glTF, glb, obj and babylon files</title>
- <meta name="description" content="Viewer for glTF, glb, obj and babylon files powered by Babylon.js" />
- <meta name="keywords" content="Babylon.js, Babylon, BabylonJS, glTF, glb, obj, viewer, online viewer, 3D model viewer, 3D, webgl" />
- <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1">
- <link rel="stylesheet" href="https://use.typekit.net/cta4xsb.css">
- <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>
- <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(() => {
- });
- </script>
- </body>
- </html>
|