Hi,
I've got a problem with loading scene with .babylon extension. I making project in .NET Core with BabylonJS addon and I got a problem with this script:
// Get the canvas element from our HTML below
var canvas = document.querySelector("#renderCanvas");
// Load the BABYLON 3D engine
var engine = new BABYLON.Engine(canvas, true);
// -------------------------------------------------------------
engine.enableOfflineSupport = false;
var scene = new BABYLON.Scene(engine);
BABYLON.SceneLoader.Load("./js/", "babilon_blender.babylon", engine, function(newScene){
var scene = newScene;
scene.executeWhenReady(function(){
scene.activeCamera.attachControl(canvas);
engine.runRenderLoop(function(){
scene.render();
});
});
});
Page is build and start loading scene, but this is over. Neverending loading with Babylon mark.
Could someone help me and advice what should I do to make a load scene properly?
Thanks for help