index.html 649 B

123456789101112131415161718192021222324252627
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Babylon.js Node Material Editor</title>
  5. <script src="https://code.jquery.com/pep/0.4.2/pep.min.js"></script>
  6. <script src="https://preview.babylonjs.com/babylon.js"></script>
  7. <script src="https://preview.babylonjs.com/nodeEditor/babylon.nodeEditor.js"></script>
  8. <style>
  9. html,
  10. body {
  11. width: 100%;
  12. height: 100%;
  13. padding: 0;
  14. margin: 0;
  15. overflow: hidden;
  16. }
  17. </style>
  18. </head>
  19. <body>
  20. <script src="index.js"></script>
  21. </body>
  22. </html>