TOOL
FBX to OBJ: How to Convert (and What Gets Lost)
Going from FBX to OBJ is a lossy step in some directions and a no-op in others. Here is what each format actually carries, what survives the conversion, and the methods worth using in 2026.
What is FBX?
FBX is the workhorse interchange format of the game and animation industries. Owned by Autodesk since 2006, its closed binary specification stores meshes, materials, textures, skeletons, animations, lights, cameras, and full scene hierarchies. Game engines (Unity, Unreal, Godot) and DCC tools (Maya, 3ds Max, Blender) all read and write FBX, even though no perfect open-source spec exists.
- Industry-standard for rigged characters and animations
- Closed binary format reverse-engineered by the FBX SDK and Blender
- Full scene graph: lights, cameras, hierarchy, constraints
- Not natively supported in browsers — convert to GLB for the web
What is OBJ?
OBJ is a plain-text geometry format that has barely changed since the early 1990s. It stores vertices, faces, vertex normals, and texture coordinates, with materials kept in an accompanying .mtl file. It is human-readable, easy to parse, and supported essentially everywhere — which is why it remains the most common interchange format between modeling tools.
- Plain-text format, line-based and trivially diffable
- Materials live in a separate .mtl file alongside the .obj
- Supports vertex colors, UVs, normals, and named groups
- No animation, no rigging, no scene hierarchy
How to convert FBX to OBJ
FBX and OBJ have overlapping capabilities, and most converters get the geometry right. The differences show up around materials, units, axis orientation, and what each tool downstream expects.
- Blender (free, all platforms). Open Blender, File → Import → FBX (.fbx), then File → Export → OBJ (.obj). Blender has native importers and exporters for every format on this page except STEP (which needs the optional CAD Sketcher addon or a separate STEP-to-mesh pass). The export dialog exposes the settings that matter: scale, axis orientation, and whether to embed materials and animations.
- Autodesk FBX Converter (free, official). Autodesk publishes a free FBX Converter that handles FBX-to-OBJ and FBX-to-DAE losslessly. For OBJ specifically, route through OBJ first if you hit material or scale issues — the Autodesk path is more reliable than community tools when animations are involved.
What gets preserved, what gets lost
Going from FBX to OBJ discards skeletal animation, rigging, and morph targets. Plan around that — once it is gone, you cannot recover it from the destination file.
Common use cases
- Universal interchange where you are not sure what tool the recipient uses
- Editing in ZBrush, MeshLab, or another tool that prefers OBJ over newer formats
Questions
Is FBX to OBJ conversion lossy?
Yes — OBJ cannot hold the animation, rigging, or morph targets that FBX can. Geometry, materials, and textures will survive (depending on the tool you use), but anything time-based will not.
Can I do this conversion online for free?
Yes — for files under ~50MB, browser-based converters handle this pair quickly. For larger files or anything proprietary, use Blender locally so the file does not leave your machine. Both options are free.
Can Automatic3D output OBJ directly?
Automatic3D's primary output is STL, optimized for 3D printing. For OBJ-specific workflows, convert from the STL using one of the methods above.