12

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)?

gman
  • 100,619
  • 31
  • 269
  • 393
Sam
  • 2,398
  • 4
  • 25
  • 37

1 Answers1

18

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);
Sam
  • 2,398
  • 4
  • 25
  • 37