Importing a Modeled Mesh from Blender to Three.js
jonathan-petitcolas.com
Importing a Modeled Mesh from Blender to Three.js
1–4 of 4 posts
Re: Importing a Modeled Mesh from Blender to Three.js
#2Re: Importing a Modeled Mesh from Blender to Three.js
#3The json export plugin works well for simple geometries but it'll only export one mesh at a time - scenes and linked meshes aren't supported. For more complex things I export as Collada and use the colladaLoader that's in the examples in three.js's github repo.
Sadly, it's not without it's own problems. It has a few bugs that make it hard to import models from Maya or Autodesk's FBX to collada converter.
Re: Importing a Modeled Mesh from Blender to Three.js
#4The json export plugin works well for simple geometries but it'll only export one mesh at a time - scenes and linked meshes aren't supported. For more complex things I export as Collada and use the colladaLoader that's in the examples in three.js's github repo.
Three.js has a newer JSON format[1], a new Blender exporter [2], and a new loader (THREE.ObjectLoader) in recent versions. They are much more fully featured and efficient compared to the earlier tools. They are more or less the preferred way to handle Blender->JSON->Three.js (at least for static meshes) now.
[1] https://github.com/mrdoob/three.js/wiki/JSON-Object-Scene-fo...
[2] https://github.com/mrdoob/three.js/tree/dev/utils/exporters/...
[3] https://github.com/mrdoob/three.js/blob/master/src/loaders/O...