It seems that Three.js allows loading geometry from OBJ files (Blender, 3DsMax, etc), but is there any support for exporting a Three.js scene into an OBJ file (or any other formats)?
9
votes
1 Answers
16
votes
By looking extensively at the GitHub repository, I found an OBJ exporter (not shipped with three.js):
var exporter = new THREE.OBJExporter();
exporter.parse(mesh);