FBX SDK 导出为旧的 fbx 文件格式

FBX SDK exporting into older fbx file format

FBX SDK 2016.0 默认写入新格式的 FBX 文件,与之前的 SDK 版本不兼容。自述文件中有关于它的注释:

Updated file format to 7.5 (compatible with 2016+ products) which now uses 64bit integers in the binary block headers to allow for large file support (>2GB). These new FBX files will NOT import in older products (2015 or less), so make sure you set the right export format if you need to target these older products.

但我找不到在我的代码中 "set the right export format" 导出为以前格式的方法。

在我的导出设置代码中试过这个但没有成功:

fbx_manager_->GetIOSettings()->SetIntProp( 
    EXP_FBX_EXPORT_FILE_VERSION, FBX_FILE_VERSION_7400 );

请求保存旧格式版本的正确方法是什么?

我可能来晚了,但我找到了解决办法: 有一种方法 FbxExporter::SetFileExportVersion() 将字符串常量作为参数。 Constats 可以在 fbxio.h 中找到,看起来像 FBX_2014_00_COMPATIBLE