Skip to content

MESH File Format (.mesh)

A MESH file is the binary model format of the OGRE rendering engine, a C++ library Steve Streeting began building around 1999, packing one or more submeshes' vertex and index buffers together with references to a skeleton file and any level-of-detail data OGRE's scene manager needs at render time.

.mesh3D Models

MESH at a glance#

Full nameOgre3D mesh
File extension.mesh
Category3D Models
DeveloperOGRE Project (Steve Streeting)
CompressionUncompressed
FileFlip supportFileFlip reads this format but does not write it

What a .mesh file can hold#

These are the things a MESH file either supports or does not, and they are what decides whether a conversion keeps everything or quietly drops something.

Textures and materialsYes
Skeletons and animationYes

Strengths and limitations of MESH#

What MESH does well

  • Binary vertex and index buffers are laid out close to how OGRE uploads them to the GPU, so loading is fast
  • Handles multiple submeshes with different materials in one file
  • Level-of-detail data can travel inside the same file rather than as separate assets

Where MESH falls short

  • Tied to OGRE; nothing outside engines built on OGRE or its forks reads the format natively
  • Skeleton data lives in a separate .skeleton file that a .mesh only references, so the two have to travel together
  • OgreXMLConverter's XML intermediate form is the practical way to inspect or hand-edit a mesh, since the binary itself isn't readable

Use MESH when a model needs to load directly into OGRE or an engine built on it without a runtime import step.

Convert MESH to OBJ or glTF when the model needs to move into an engine or DCC tool that isn't built on OGRE.

How to open a .mesh file#

A .mesh file opens in the programs below, grouped by the platform you are on. If you would rather not install anything, FileFlip converts MESH into a format your machine already opens, and it does it in the browser tab rather than on a server.

PlatformPrograms that open it
WindowsOgreMeshViewer
WebFileFlip

MESH questions people ask#

What is a MESH file?

A MESH file is a binary 3D model in the format the OGRE rendering engine uses, storing one or more submeshes' geometry along with a reference to a skeleton file and any level-of-detail data OGRE's scene manager needs. Steve Streeting's OGRE project defined the format alongside the engine.

Why does a MESH file need a separate skeleton file?

OGRE splits a model's geometry from its skeleton so the same skeleton can be shared or swapped between different meshes; the .mesh file only stores a reference to the .skeleton file it needs, rather than embedding the bone hierarchy. Both files have to be present for an animated model to work.

Can I open a MESH file outside OGRE?

There's little support for OGRE's .mesh format outside the engine itself and tools built specifically for it, such as OgreMeshViewer or the OgreXMLConverter that turns it into readable XML. Converting to a more widely supported format like OBJ or glTF is the practical route for opening it elsewhere.

Converting MESH files#

FileFlip does not write .mesh files, so nothing on the site converts into this format. It works as a source only.

Every conversion runs inside your browser. The file is read from your disk, the work happens on your own machine, and nothing is uploaded. How FileFlip works names the engine behind each family and how to verify that for yourself.