I am facing an issue while loading a set of .fbx objects using FBXLoader on a WebXR App.
window.fbxLoader.load("/assets/modelate_FBX/Vaza%208067134/Vaza 8067134.fbx", function( object ) {
const flower = this.scene.children.find(c => c.name === 'sunflower');
window.sunflower = this.scene;
});
Every time I run the app, I encounter the following console error:
undefined:1 GET http://localhost:8887/assets/modelate_FBX/Vaza%208067134/undefined 404 (Not Found)
I have double-checked the object path and it seems correct, as I was able to render GLtf files successfully before. However, rendering FBX files is proving to be challenging.
I anticipate that specifying a path for the texture models might resolve the issue. But truth be told, I am a bit confused at the moment.