vote up 6 vote down star
2

It's been about two years since I last developed games, and I am interested in starting a new project. What is the most common open-source 3D model format?

I am looking for a format that would preferably have a lot of either public domain or open-licensed models existing. Last I checked, MD5 was the most common animated model format, and 3DS was the most common static model format. Is this still true?

On a similar note, are there any free libraries that can be used for that purpose?

flag

1 Answer

vote up 6 vote down check

Check out FBX and Collada.

Both are "interchange" formats, meaning in theory they can contain anything a 3D application might produce. So exporting FBX or Collada from one application and importing into another one should transfer everything that is possible.

Of course the above makes the formats quite complex. And issues or bugs in exporters/importers don't quite make up to this ideal. But it's getting there.

FBX is closed format by Autodesk, with freely available SDK and import/export tools. Now that they control almost all 3D applications, I expect it to be more consistent/better across their apps. Collada is an open format originally invented by Sony. Based on XML, which can be a good or a bad thing.

Both of those are not meant to be the final formats that an application or game would use. They are really big & fat & slow (meant for interchange). For the final format, I'd suggest as simple as possible binary format. E.g. a mesh would be a vertex buffer dump + index buffer dump + some header with info. So you'd take FBX or Collada files exported from a 3D application, read them using FBX or Collada SDKs and produce final format.

link|flag
While these interchange formats appear great at first, most modeling packages implement them so naively that they are in practice useless for exchanging data between apps that aren't based on the same basic concepts. E.g. anything relating to cameras, animations and multitexturing will be lost. – Ronny Vindenes Jan 14 at 12:49
@RvV: yes, that's why I said "in theory". However, there does not appear to exist anything better so far... – NeARAZ Jan 15 at 7:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.