|
@@ -1,4 +1,4 @@
|
|
|
-/*
|
|
|
+/*
|
|
|
---------------------------------------------------------------------------
|
|
|
Open Asset Import Library (assimp)
|
|
|
---------------------------------------------------------------------------
|
|
@@ -53,6 +53,9 @@ corresponding preprocessor flag to selectively disable formats.
|
|
|
#ifndef ASSIMP_BUILD_NO_X_IMPORTER
|
|
|
# include "XFileImporter.h"
|
|
|
#endif
|
|
|
+#ifndef ASSIMP_BUILD_NO_AMF_IMPORTER
|
|
|
+# include "AMFImporter.hpp"
|
|
|
+#endif
|
|
|
#ifndef ASSIMP_BUILD_NO_3DS_IMPORTER
|
|
|
# include "3DSLoader.h"
|
|
|
#endif
|
|
@@ -199,6 +202,9 @@ void GetImporterInstanceList(std::vector< BaseImporter* >& out)
|
|
|
#if (!defined ASSIMP_BUILD_NO_OBJ_IMPORTER)
|
|
|
out.push_back( new ObjFileImporter());
|
|
|
#endif
|
|
|
+#ifndef ASSIMP_BUILD_NO_AMF_IMPORTER
|
|
|
+ out.push_back( new AMFImporter() );
|
|
|
+#endif
|
|
|
#if (!defined ASSIMP_BUILD_NO_3DS_IMPORTER)
|
|
|
out.push_back( new Discreet3DSImporter());
|
|
|
#endif
|