thanks a lot!
I have downloaded it and tested it... IT WORKS!
for the tga files, I don't have photoshop but resaved them with Irfanview (it's a free and very powerful batch image converter).
it worked perfectly.
for the compilation of CLMTSMeshFileLoader.cpp I got some problems...
I'm using MinGW (and dev-cpp as an IDE) for compilation and it didn't worked the first time I tried to compile.
It complained that "os.h" was not found...
I suppose that you use visualc++, but os.h is not included with mingw by default.
and after a search on google I didn't find the file...
I also got errors because mingw didn't know what is "cerr" ...
anyway, I solved the problem.
I deleted that line and changed all the includes to:
#include <string.h>
#include <SMeshBufferLightMap.h>
#include <SAnimatedMesh.h>
#include <SMeshBuffer.h>
#include <irrString.h>
#include <iostream>
#include <stdio.h>
#include "CLMTSMeshFileLoader.h"
using namespace std;
Now it works perfectly!
Does I miss something by replacing os.h by iostream?
Does my comment help you?
Again, Thanks for your great work!
![Very Happy :D](./images/smilies/icon_biggrin.gif)