Export mesh to .obj and .stl format

Hi, my goal is export the mesh to .obj and .stl format, and i foled this sample Sample Playground. But in this case we have only .babylon format. Is possible export to .obj and .stl ? If is possible can you help me ?

Thank you very much.

Yes, we support OBJ and STL export as external contributions to the engine.You can check:
OBJ:
https://doc.babylonjs.com/api/classes/babylon.objexport
as a sample:
https://www.babylonjs-playground.com/#IFYDRS#104

The STL exporter is has an identical API as well:
https://doc.babylonjs.com/api/classes/babylon.stlexport

1 Like

Thank you @Drigax !