Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

3D File Formats for Games

Tags:

file-format

3d

I'm getting started with XNA and Blender and am trying to find good quality, up to date information on the various 3D file formats that are used in game development.

Clearly many games are developed with multiple and custom 3D file formats, but I'm interested in choosing a good solution using a more commonly supported format.

What are the most popular formats and what distinguishes them?

NOTE Ideally, they should support animations, but I would also be interested in other formats that might be used for building maps or static objects.

like image 270
Michael La Voie Avatar asked Jul 23 '09 23:07

Michael La Voie


People also ask

Which 3D file format should I use?

3ds is one of the best 3D file formats when it comes to drawings and objects. Since the 3DS format is understood by virtually all 3D-related software, such files can be opened or imported with a large number of tools. The main areas of use are architecture, engineering, education, manufacturing.

What is 3D file format?

3D file formats are used for storing information about 3D models. You may have heard of some of the most popular formats, including STL, OBJ, FBX, and DAE. They're widely used in a variety of applications, from video game animation to industrial additive manufacturing.

Which is better OBJ or glTF?

The glTF format was designed to be able to download and display graphics with minimal hassle. While the OBJ format is easy to read, and therefore to edit, the glTF format is ideal for rendering. That means excess data is cut for smaller files and faster load speeds.

What is a FBX file format?

Adaptable file format for 3D animation software. FBX® data exchange technology is a 3D asset exchange format that facilitates higher-fidelity data exchange between 3ds Max, Maya, MotionBuilder, Mudbox and other propriety and third-party software.


1 Answers

In XNA, penalty of trying to do anything on your own (load data formats in particular) is much higher than living with imperfections of the ones supported right off the shelf, at least that's what the documentation looks like, and what i heard from someone who bended the content pipeline dearly to support what he needs (runtime geometry generation) and whom i trust to know what he is doing. So i guess .X and .FBX are pretty much gonna be it. They both support skeletal animation, and i think also vertex morping. I'm not exactly sure what features exactly Blender is able to export into them, but i can look into it if you like.

Blender 2.5 is going to finally have good Collada support (current one doesn't have armatures and is broken in multitude of ways), and Autodesk provides a good tool for Collada <-> FBX conversion.

If you look around hobby development community, you'll see that Id software data formats are quite popular. On the one hand the MD2 and MD3 vertex morphing character animation formats, MD5 skeletal animation format, whose needs are obviously covered by the above, and on the other hand the BSP file format, which describes game levels.

One thing that speaks for BSP is that a good editor is available (GTKRadiant and derivatives). This is an efficient format which can cull hidden geometry. However, the runtime cost of building custom geometry in XNA is significant, and with the limits of these formats are quite modest at 64k vertices and 64k polygons in the whole game level, which is something you can just dump onto the graphics card nowadays and no performance drop will be noticeable. So you don't gain any benefit from supporting it directly.

I doubt there are any powerful, modern, available formats and tools for culling-optimized level design, whose performance benefits would translate into XNA.

A couple of links you might want to check out, if you haven't already:

3D World Studio content pipeline

Quake port

All unmaintained and out of date, no idea how optimized or not.

like image 56
3yE Avatar answered Sep 20 '22 16:09

3yE