Community
FBX Forum
Welcome to Autodesk’s FBX Forums. Share your knowledge, ask questions, and explore popular FBX topics.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Export In Between Versions?

4 REPLIES 4
Reply
Message 1 of 5
cactusdan
553 Views, 4 Replies

Export In Between Versions?

Howdy,

 

OK, the ConvertScene example shows how to export the current version 7 and the older version 6, but it doesn't show how to export the in between versions: 7.0, 7.1, etc.

 

How can I export the in between versions?

 

Adios,

Cactus Dan

4 REPLIES 4
Message 2 of 5
3DCodec
in reply to: cactusdan

If you could find any solution for that, would you please share it with me ?

Unforunately file formats (like FBX 6.0 ascii (*.fbx) ) only works with 6.0, and other versions like 7.1, 7.2 etc .won't work.

Message 3 of 5
3DCodec
in reply to: cactusdan

Finally found the solution.

Use FindWriterIDByDescription for fileformat like ("FBX ascii (*.fbx)"), then call the following for setting version:

lExporter.SetFileExportVersion(FbxString("FBX201100"), FbxSceneRenamer::eNone) // or FbxSceneRenamer::eFBX_TO_FBX);

 It is using version format by year, not numbers (7.1,...)

Note that fileformat of "FBX 6.0 ascii (*.fbx)" only supports 6.0 and no other version number, so don't call "FBX 7.1 ascii (*.fbx)"

Message 4 of 5
cactusdan
in reply to: cactusdan

Howdy,

 

Thanks! I now have it working. 

 

Adios,

Cactus Dan

Message 5 of 5
artgolf1000
in reply to: cactusdan

//File version compatibility strings
#define FBX_53_MB55_COMPATIBLE "FBX53_MB55"
#define FBX_60_COMPATIBLE "FBX60_MB60"
#define FBX_2005_08_COMPATIBLE "FBX200508_MB70"
#define FBX_2006_02_COMPATIBLE "FBX200602_MB75"
#define FBX_2006_08_COMPATIBLE "FBX200608"
#define FBX_2006_11_COMPATIBLE "FBX200611"
#define FBX_2009_00_COMPATIBLE "FBX200900"
#define FBX_2009_00_V7_COMPATIBLE "FBX200900v7"
#define FBX_2010_00_COMPATIBLE "FBX201000"
#define FBX_2011_00_COMPATIBLE "FBX201100"
#define FBX_2012_00_COMPATIBLE "FBX201200"
#define FBX_2013_00_COMPATIBLE "FBX201300"
#define FBX_2014_00_COMPATIBLE "FBX201400"
#define FBX_2016_00_COMPATIBLE "FBX201600"

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk Design & Make Report