Index.cshtml 469 B

12345678910111213
  1. @{
  2. ViewBag.Title = "Our Own Sandbox";
  3. ViewBag.BabylonJSFolder = "..\\..\\..\\";
  4. }
  5. <script type="text/javascript">
  6. $(document).ready(function () {
  7. var filesInput = new BABYLON.FilesInput(OURBABYLON.engine, OURBABYLON.currentScene, OURBABYLON.canvas, function (sceneFile, babylonScene) {
  8. OURBABYLON.sceneInitialization(babylonScene, true);
  9. });
  10. filesInput.monitorElementForDragNDrop(OURBABYLON.canvas);
  11. });
  12. </script>