How find "addons" folder for three.js JSON

Hello everyone,

I would like to convert .obj to three.js json i have seen that we can use Blender to convert it, the tuto tell me to use “addons” (utils/exporters/blender/addons) folder on Three.js git repository but what I saw the folder was remove.

I really need to convert the .obj file into .json so where can i find this folder

Thanks for your time Capture

The folder is definitely gone since the exporter was removed over a year ago. I suggest you directly import the OBJ file with OBJLoader. If you need a JSON file for some reasons, you can also import the OBJ into the editor and then select “Export Object”. The resulting JSON can now be loaded with THREE.ObjectLoader.

image

Thank for you answer