frey Posted October 31, 2017 Share Posted October 31, 2017 Sorry for my English I'll do my best to explain it. the problem is I made a 3D model by blender and exported it as a .babylon file. Then I want to load this model in my page, but it's a black screen. here is the code, and the error from safari . Thanks for your help! Quote Link to comment Share on other sites More sharing options...
GameMonetize Posted October 31, 2017 Share Posted October 31, 2017 Hello! how are you hosting your web site? local webserver? If so make sure to allow .babylon mime type Quote Link to comment Share on other sites More sharing options...
RaananW Posted November 1, 2017 Share Posted November 1, 2017 the 404 has nothing to do with the .babylon file, it is simply missing a map file (unneeded for regular usage). As dk said, make sure you are hosting the .babylon correctly, and implement the onError callback in the Load function to get a better understanding of the error you receive. to do that, add another function after the progress function: function(scene, error, exception) { console.log(error, exception); } Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.