Hi all
I used the following codes to load my FBX file
(it has corresponding .fbm
folder which i put into same dir of .fbx
with same name)
import FACTORY from '.../factory.fbx'
new FBXLoader().load(
FACTORY,
faty => {
scene.add(faty);
console.log(scene);
},
undefined,
e => console.error(e)
);
all the things seem to be good
However, my model is not visible in browser(But it can be correctly loaded in other apps like blender)
Anybody could help this?
thanks a lot