Exporting Threejs Scene to Obj Format

后端 未结 1 1433
没有蜡笔的小新
没有蜡笔的小新 2020-12-09 13:13

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

相关标签:
1条回答
  • 2020-12-09 13:28

    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);
    
    0 讨论(0)
提交回复
热议问题