When i load stl file, it shows importScene of undefined from undefined version
See original GitHub issueBugs
- Bug repro on playground:
BABYLON.SceneLoader.Append('/assets/stl/', 'arm.stl', scene, function(scene) {
});
- Expected result: expect to load stl
- Current result: but it failed with exception as following:
BJS - [02:26:40]: Unable to load from /assets/stl/arm.stl: importScene of undefined from undefined version: undefined, exporter version: undefinedimportScene has failed JSON parse
Issue Analytics
- State:
- Created 5 years ago
- Comments:6 (1 by maintainers)
Top Results From Across the Web
importMesh of undefined from undefined - Bugs
I'm getting this error: Unable to import meshes from ... version: undefined, exporter version: undefinedimportMesh has failed JSON parse.
Read more >ImportMesh of undefined from undefined - Babylon.js Forum
I have this error when I try to show the model on the browser: “BJS ... version: undefined, exporter version: undefinedimportMesh has failed...
Read more >Three.js STL loader with TypeScript - Uncaught TypeError
Seems like i found the missing part. As the module, and not the constructor, has to receive the THREE object, I only needed...
Read more >What are the top STL file errors? Here's how to fix them | Hubs
Learn to identify the errors you may encounter when working with STL files and how to fix them so they don't delay your...
Read more >import stl into moveit - ROS Answers: Open Source Q&A Forum
It works as described but when I try to import a stl file I exported from Solidworks, I receive an error saying: unable...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I tried with that import but I wasn’t still able to load the
.obj
. It seems thatwebpack
is doing something fancy behind. I solved with this quick workaround:@deltakosh I fixed by modify the import:
import 'babylonjs-loaders';
Thanks