I seem to be experiencing an issues pretty close to this one looks like the fix should be in though, and I am still getting it.
I have a NurbsCurve created in blender, and exported as an obj.
my Babylon versions are:
"babylonjs": "^4.2.0",
"babylonjs-loaders": "^4.2.0",
My loading code is:
BABYLON.SceneLoader.Load("/assets/3d/", "pathing_test.obj", engine, function (scene) {
// do something with the scene
});
My Obj file looks like:
# Blender v2.91.2 OBJ File: 'ship.blend'
# www.blender.org
o path_test_1_NurbsCurve
v -1.821069 0.000000 10.709910
v -2.349467 0.000000 10.435993
v -2.812101 0.000000 10.134640
v -3.210908 0.000000 9.809603
...
v -0.333340 0.000000 -1.249982
l 1 2
l 2 3
l 3 4
My console errors are:
Babylon.js v4.2.0 - WebGL2
babylonjs.loaders.min.js?b234:16 Unhandled expression at line : l 1 2
babylonjs.loaders.min.js?b234:16 Unhandled expression at line : l 2 3
babylonjs.loaders.min.js?b234:16 Unhandled expression at line : l 3 4
babylonjs.loaders.min.js?b234:16 Unhandled expression at line : l 4 5
So it seems to be having issues with the lines not the vertex now. Thanks in advance if you can help.