I have a files in .FBX and I need to convert them in collada so I can use them in Three.js. I managed to convert them with FBX Converter but then I lost textures. How can I convert them so I can use textures.
Here is the FBX converted with FBX Converter: pearl.dae
And here is the link of model which I exported as FBX_DAE in Maya 2013 model2.dae I have just import the FBX and export as FBX_DAE
Model exported in Maya has texture if I do the quick preview on Mac but when I load it in Three.js it has no textures.
And the pearl.dae converted with FXB converter has no texture neather in quick previw nor in Three.js
Here is my loader code:
var Loader = new THREE.ColladaLoader();
Loader.options.convertUpAxis = true;
Loader.load('./models/pearl.dae', function(collada){
Bracelet = collada.scene;
Skin = collada.skins[0];
Bracelet.scale.x = Bracelet.scale.y = Bracelet.scale.z = 1;
Bracelet.updateMatrix();
init();
render();
});
Please help.