Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Version 10 (modified by FelixSchulthess, 16 years ago) (diff)

Object Export with Blender

This page explains how to export 3D models from Blender to load them in Orxonox.

mesh Files

Ogre understands only the Ogre-specific .mesh files, so we have to export our objects from Blender to a .mesh file. A .mesh file is a binary file, that contains one single mesh (object).

Prerequisites

To export to mesh we first need the Blender Mesh Exporter, a python plugin for Blender. Get it from the Ogre webpage. To use this plugin, python must be installed on your system.

If a system wide installation is intended, unpack the zip file into /usr/share/blender/scripts. If only a local installation in required or possible (probably due to the lack of permissions), unpack them somewhere in your home dir, ~/.blender/scripts/ is suggested.

Exporting to mesh

  1. Check if all textures for your objects are loaded into Blender.
  2. It is very helpful, to name your objects and data blocks if you have not done so already (see picture).
  3. Open the export dialog (File → Export → OGRE Meshes). If this option doesn't show up, update the menus (Scripts Windows → Scripts → Update Menus). If it still doesn't show up, make sure you have installed the script correctly and you have python installed.
  4. Select the model, check "OgreXML Converter", uncheck "Copy Textures", if your texture resides in the same folder as your blend file. Pick a sensible filename for your material under Material Settings.
  5. Hit Export.

This will create (at least) 3 new files in the blend-file-folder: a .mesh file, a .mesh.xml file, and a .material file.

The material filename will be the one you chose in the export dialog. This file contains all materials that are used in your scene, so if you export several meshes from the same scene (blend-file), you will only need one material file.

The name of the two mesh files will be the one you picked in the material window (see picture). The .mesh.xml file is a XML file containing the data of your object. Because you checked "OgreXML Converter", the XML file was directly converted to the binary mesh file, which we need to load the model into the game.

Attachments (1)

Download all attachments as: .zip