Assimp 3.1.1 and FBX

Started by
2 comments, last by BitMaster 8 years, 10 months ago

Hello!

I noticed that new Assimp from version 3.1 shoud open FBX files. So I tried to get new assimp library. I download windows binaries and copy libs and includes to my OpenGL project. Then I found problem that in GetExtensionList, I do not find this type of files. What shoud I do or change to get support for this files?

Advertisement

My Assimp 3.1.1 supports FBX just fine.

Code:


int main()
{
  aiString list;
  Assimp::Importer imp;
  imp.GetExtensionList(list);
  std::cout << list.C_Str() << std::endl
  return 0;
}

Output:

q4sDNBP.png

Oki i found a way to upgrade to run it and got version 3.1.1. Now I'm trying to import Ogre .mesh file. But when I do, I got error: "Error occured: Mesh Version [MeshSerializer_v1.41] not supported by this importer. Run OgreMeshUpgrader tool on the file and try again. Supported versions: [ MeshSerializer_v1.8]". My question is, where I can find this tool?

Googling for 'OgreMeshUpgrader download' leads me to this page with 'Ogre Command-line Tools (1.7.2)' which, according to the description, should contain the tool.

This topic is closed to new replies.

Advertisement