I need to convert an obj to .bin , I can’t seem to find the convert_obj_three.py anywhere in the repository.. What are my options?
Author: Fantashit
1 thought on “Where is convert_obj_three.py ?”
I’d like to suggest an alternative workflow because BinaryLoader is from my point of view somewhat deprecated (it still outputs Geometry) and limited in its features.
You can then load your file with GLTFLoader which is a much more up-to-date solution for your problem.
BTW: I think it was okay to remove the python code since the JavaScript solution is way easier to maintain. Even if this means to drop binary support. There are better alternatives like the glTF one.
I’d like to suggest an alternative workflow because
BinaryLoader
is from my point of view somewhat deprecated (it still outputsGeometry
) and limited in its features.If you don’t want to load
OBJ
directly, try to convert your file to the standardizedglTF
format with this converter: https://github.com/AnalyticalGraphicsInc/obj2gltfYou can then load your file with
GLTFLoader
which is a much more up-to-date solution for your problem.BTW: I think it was okay to remove the python code since the JavaScript solution is way easier to maintain. Even if this means to drop binary support. There are better alternatives like the
glTF
one.