|
@@ -170,7 +170,9 @@ corresponding preprocessor flag to selectively disable formats.
|
|
#ifndef ASSIMP_BUILD_NO_ASSBIN_IMPORTER
|
|
#ifndef ASSIMP_BUILD_NO_ASSBIN_IMPORTER
|
|
# include "AssbinLoader.h"
|
|
# include "AssbinLoader.h"
|
|
#endif
|
|
#endif
|
|
-
|
|
|
|
|
|
+#ifndef ASSIMP_BUILD_NO_GLTF_IMPORTER
|
|
|
|
+# include "glTFImporter.h"
|
|
|
|
+#endif
|
|
#ifndef ASSIMP_BUILD_NO_C4D_IMPORTER
|
|
#ifndef ASSIMP_BUILD_NO_C4D_IMPORTER
|
|
# include "C4DImporter.h"
|
|
# include "C4DImporter.h"
|
|
#endif
|
|
#endif
|
|
@@ -305,8 +307,10 @@ void GetImporterInstanceList(std::vector< BaseImporter* >& out)
|
|
#if ( !defined ASSIMP_BUILD_NO_ASSBIN_IMPORTER )
|
|
#if ( !defined ASSIMP_BUILD_NO_ASSBIN_IMPORTER )
|
|
out.push_back( new AssbinImporter() );
|
|
out.push_back( new AssbinImporter() );
|
|
#endif
|
|
#endif
|
|
-
|
|
|
|
-#ifndef ASSIMP_BUILD_NO_C4D_IMPORTER
|
|
|
|
|
|
+#if ( !defined ASSIMP_BUILD_NO_GLTF_IMPORTER )
|
|
|
|
+ out.push_back( new glTFImporter() );
|
|
|
|
+#endif
|
|
|
|
+#if ( !defined ASSIMP_BUILD_NO_C4D_IMPORTER )
|
|
out.push_back( new C4DImporter() );
|
|
out.push_back( new C4DImporter() );
|
|
#endif
|
|
#endif
|
|
}
|
|
}
|