After obtaining a fbx file with textures from this link, I attempted to open it using three.js:
var loader = new THREE.FBXLoader();
loader.load('models/fbx/myfile.fbx', function(object) {
scene.add(object);
}, (ev) => {
console.log(ev);
}, (e) => {
console.log(e);
});
You can find more information at this page.
However, I encountered an error:
Error: THREE.FBXLoader: Unknown property type
When trying another fbx file, a different error occurred:
ReferenceError: Zlib is not defined
My goal is to successfully open the fbx file.