Axiom projects

(c) mjt, '09 --- to Haima site (in Finnish)

Check Axiom 3D official project page / forums.

***

Axiom 0.7.5-svn 'Release'-binaries (without Xna) with patches so it uses OpenTK 0.9.9-svn, Tao framework 2.1-svn and can load images without DevIL. Comes with few examples. (updated 22.9.09)

Here is compiled Test1 using axiom+otk platform and renderer, works on Windows, Linux and OSX.

Create overlay program reads .cs -dialog file made by VS (2008 tested) and converts it to .overlay and .material files. Can use label (for text) and pictureBox (for images). Includes binary (bin/Debug) and source codes.

Tile-based MapEditor, small test project (cant do anything useful with that ;)) using Axiom v0.7.5. Im not developing this version any more. Works only on Windows. No source codes included.
Few images: img | img | img | img

***

Some source code, patches, dlls, or something.

***

Programs/exporters:

3ds2mesh - converter from 3D Studio file to Ogre3D/Axiom .mesh/.material.
Blender_exports.rar - includes ogredotscene.py and ogremeshesexporter.py that can be used in Blender 3D-modelling software.
OgreCommandLineTools 1.0.3 - in this packet OgreXMLConverter.exe is needed when converting xml-files exported by ogremeshesexporter.py to .mesh -files AND using Axiom v0.7.5.
OgreCommandLineTools 1.6.3 - if using Axiom v0.8.

More Ogre -programs/exporters, havent tested these:
Ogre tools - editors, viewers..
More Ogre3D exporters - maya, milkshape3d, softimage, etc.
OgreMax Scene Exporter - 3dsmax exporter.

Notes:

When using ogremeshesexporter.py script with old OgreXMLConverter.exe (if converting to axiom 0.7.5), change

in ogrepkg/base.py, line 467:

commandLine = '"' + encodedConverter + '" -log "' \
+ os.path.join(encodedDir, 'OgreXMLConverter.log') \
+ '" ' + self.converterArgs + basicArguments + ' ' + arguments \
+ ' "' + encodedFilename + '"'

to

commandLine = '"' + encodedConverter \
+ '" ' + self.converterArgs + basicArguments + ' ' + arguments \
+ ' "' + encodedFilename + '"'

because the old converter doesnt have -log parameter.

***