Hi I have recently embarked on creating a new game engine (openGL + c++) and I was wondering what would be a good file format to export to from blender and import into my game. I don't have much experience with binary i/o but i can work with ASCII fairly well. I'm not very concerned with supporting animations and my engine will probably only use triangles with textures and normals.
Can anyone point out some good file formates to work with and possibly direct me to useful libraries associated with them?
Thank you.
A good 3d format to export to and read from in a game?
Moderators: jesterKing, stiv
I would recommend collada:
http://www.khronos.org/collada/
It's pretty simple and uses xml. That way if you ever decided to go from just reading in triangles and textures to more complicated stuff it wouldn't be that hard to support.
http://www.khronos.org/collada/
It's pretty simple and uses xml. That way if you ever decided to go from just reading in triangles and textures to more complicated stuff it wouldn't be that hard to support.