Reputation: 2261
My question is,can I import files (shapes) from 3d studios into three.js... type of json or something? any types (*.obj...)
Upvotes: 3
Views: 627
Reputation: 195981
They provide exporters for some software apps..
You can find an exporter from 3D studio max to three.js json format at https://github.com/mrdoob/three.js/tree/master/utils/exporters/max
Their Loaders can be found at https://github.com/mrdoob/three.js/tree/master/src/extras/loaders
Upvotes: 2