Add experimental MS3D loader, static meshes only at the moment.

git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@542 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
This commit is contained in:
aramis_acg
2010-02-07 00:54:48 +00:00
parent 17326515d4
commit 707b06a7fe
9 changed files with 511 additions and 0 deletions

View File

@@ -161,6 +161,9 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef AI_BUILD_NO_OGRE_IMPORTER
# include "OgreImporter.h"
#endif
#ifndef AI_BUILD_NO_MS3D_IMPORTER
# include "MS3DLoader.h"
#endif
// .......................................................................................
// PostProcess-Steps
@@ -366,6 +369,9 @@ Importer::Importer()
#if (!defined AI_BUILD_NO_OGRE_IMPORTER)
pimpl->mImporter.push_back( new Ogre::OgreImporter());
#endif
#if (!defined AI_BUILD_NO_MS3D_IMPORTER)
pimpl->mImporter.push_back( new MS3DImporter());
#endif
// ----------------------------------------------------------------------------