Preferred 3d model format of THREE.JS

3d, file-format, three.js

Solution

We have our own JSON Geometry format.

You can use these:

- Editor (drag your object into the window, select it and select `File/Export Geometry`)

- Blender exporter

- Python script from OBJ to JSON

Problem

What is the preferred 3d model format of THREE.JS which is widely used by 3d modelling softwares (can export to that format). I ask this, because I have my 3d models in an own unique format, and would like to use them in THREE.JS. While I could write an own loader, but I think it's better to convert them to a standard format.

Original source