OGRE Meshes Exporter

Blender is an open source 3D content creation suite for modeling, animation, rendering and video post production. The OGRE Meshes Exporter is a set of python scripts to run directly within Blender. Currently it supports the export of

Table of Contents

Installation

The script needs access to standard Python modules not shipped with Blender. Consult the Blender documentation at www.blender.org how to incorporate Python with Blender.

Basic Usage

There is a one-to-one correspondence:

Blender Object (OB) ↔ Ogre::SceneNode
Blender Mesh (ME) ↔ Ogre::Entity

The OGRE Meshes Exporter maps Blender Meshes (ME) to Ogre Entities. Please refer to the OGRE Scene Exporter for the mapping of Blender Objects (OB) to Ogre SceneNodes.

To export Blender Meshes (ME) do:

You will get a detailed log of the export process. All files are exported in the OGRE XML format. Use the OgreXMLConverter of your OGRE installation to convert the generated XML files to binary .mesh and .skeleton files.

exporter screenshot

Screenshot of the exporter interface.

Options

Selected:
The pop-up menu has an entry for every object that is selected for download. Select a mesh object in order to display its animation settings in the box below.
Update
Updates the list of all objects selected for export from the currently selected objects in the "3D View". Also updates the list of possible actions, deletes animations for removed actions and sets default animations for new actions.
Animation Settings of
Shows the animations that will be exported for the given mesh. You can switch between Skeleton, Pose and Morph animations, if available.
Skeleton
Show the skeleton animations, that will be exported. Only available if the mesh is modified via an armature either as parent or as modifier.
Pose
Show the pose animations, that will be exported. Only available if the mesh has shape keys.
Morph
Show the morph animations, that will be exported. Only available if the mesh has shape keys.
Each line in the area with the scrollbar corresponds to an animation, that will be exported.
Action name
The name of the Blender action. Only available for skeleton animations.
Start:
Start frame of the animation.
End:
End frame of the animation.
Animation export name
The animation name in the exported OGRE file.
Delete
Removes the animation from export.
Add
Add another animation to be exported.
Material Settings
Material File
The name of the material script file that will be generated.
Coloured Ambient
Use scaled diffuse colour as ambient colour instead of scaled white. This does only work for materials for which TexFace is not set.
Game Engine Materials
Export materials as displayed in the game engine. Materials are exported as displayed in the rendered results on default.
Copy Textures
Copy textures to the export path, if possible
OgreXMLConverter
Convert the XML files to binary files via the OgreXMLConverter. The exporter must be able to find the converter executable. You can specify its location in the preferences.
Path
All files of the exporter are written into this directory. Mesh files are named after the mesh name in Blender with suffix ".mesh.xml". Skeleton files are named after the mesh object name and the armature name in Blender with suffix ".skeleton.xml".
Export
Export all objects in the list of objects selected for export.
Preferences
OgreXMLConverter
Auto
OgreXMLConverter is called without specifying its location. Only works if the executable is in the PATH.
Manual
Calls the executable specified in Converter.
Additional arguments
Additional arguments added to the converter call.
Ok
Apply changes.
Cancel
Discard changes.
Help
Display the manual in the default browser.
Quit
Exit from the export script.

The script loads and saves its options to a text buffer "OgrePackage.cfg" inside the current .blend file. You can save the current settings, if you save the .blend file after quitting the exporter.

Meshes

The script supports sticky and per face vertex uv coordinates, smoothed and non-smoothed normals, vertex colours. Each rectangle face is automatically converted into two triangle faces in the exported mesh. The exporter defaults to using 16 bit indices but if the submesh vertex count exceeds the 16 bit limit then 32 bit indices are used.

The script does not support subdivision surface (SubSurf) options. To export a SubSurf object, you have to convert it into a Mesh object, "Object → Convert Object Type... → Mesh (keep original)".

The script does not support the "Double Sided" mesh option, use the "Two Sided" face option instead.

To force the export of vertex colours, select "VCol Light" in the meshes' materials and export with "Game Engine Materials" disabled.

Materials

In contrast to OGRE, Blender treats material, uv texture and blend mode separately. Also Blender distinguishes between material appearance in the game engine and material appearance in the rendered results.

Rendering Materials

The name of the exported material is the same as in Blender. If the "Two Sided" face option is set, the suffix "/TWOSIDE" is appended. If the "TexFace" material option is set, the suffix "/TEXFACE" and the name of the texture image that is assigned with the UV/Image Editor is appended. The "Two Sided" face option has no effect in Blender's rendering results and is evaluated on export for convenience only.

material panel

shaders panel

mirrortransp panel

Blender's material settings that affect the exported OGRE material are marked green.

image panel

The script exports image textures with "Map Input" set to "UV" and "Map To" set to "Col" and optional "Alpha". The supported image options are marked green.

InterPol MipMap resulting filtering
yes yes trilinear
yes no linear linear none
no yes bilinear
no no none

Game Engine Materials

The material name has to be unique. Therefore, the name of the exported material consists of Blender's material name (if any), the face blend mode and texture file name (if any). If vertex colours are defined, a postfix "/VertCol" is appended. Also, if the two-sided face option is set, "/TWOSIDE" is appended.

If a material is assigned to face, only the properties that affect the appearance in the game engine are exported. These are the "Col" and "Spe" colours, the "Amb", "Spec" and "Hard" factors and the "VCol Paint" and "TexFace" options.

Textures assigned with the UV/Image Editor are exported. Note that material image textures, which can be exported as rendering engine materials, give you more control over filtering and texture address modes.

face options

Blender's face settings affect the mesh appearance only in the game engine. The properties exported by the script are marked green.

Animations

The animation speed in the export in terms of frames per second is taken from the corresponding scene render button.

format panel

Blender's format setting that affect the exported OGRE animation is marked green.

Armature Animations

Armature animation export is available if the mesh has an armature as parent deform or an armature modifier and that armature has at least one action. Armature animations are exported based upon keyframe ranges and action names. You can choose any frame as start and end frame of an animation. In order to export armature animations of a mesh you don't have to select the armature separately. On export, the script will sample the bone poses of the selected action frame by frame.

modifiers panel

modifiers panel

The script supports a parented armature as well as an armature modifier.

Shape Animations

Relative shape animations can be exported as pose or morph animations. On export, the script will sample the vertex positions frame by frame.

shape panel

The script exports relative shape keys.