Inside Sabertooth
Learn how Sabertooth uses 3ds Max to create 3D interactive projects, including HBO Go’s Game of Thrones interactive experience
  • 1/3
You are here: Forum Home / Autodesk® FBX® / FBX SDK / Older version of the FBX format
  RSS 2.0 ATOM  

Older version of the FBX format
Rate this thread
 
50330
 
Permlink of this thread  
avatar
  • Location: Glendale, CA
  • Total Posts: 10
  • Joined: 08 August 2007 06:46 PM

I am using SDK 2011.3 and export files with:
//////////////
; FBX 7.1.0 project file
; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors.
; All rights reserved.
; ----------------------------------------------------

FBXHeaderExtension:  {
FBXHeaderVersion: 1003
FBXVersion: 7100
//////////////
in the top of the file.

Customers with MB2010 cannot open these files unless they user the Converter Program.

Can I write out 6100 version of the FBX format which 2010 can read.  I tried

lExporter->SetFileExportVersion("6100", KFbxSceneRenamer::eNONE);

but it didn’t make any difference.

Simon



Replies: 0
avatar

Hello Simon,
Please try the followings:

For Binary:

int lFormat pSdkManager->GetIOPluginRegistry()->FindWriterIDByDescription("FBX 6.0 binary (*.fbx)");
lExporter->Initialize(pFilenamelFormatpSdkManager->GetIOSettings());
lExporter->Export(pScene);

For Ascii:

int lFormat pSdkManager->GetIOPluginRegistry()->FindWriterIDByDescription("FBX 6.0 ascii (*.fbx)");
lExporter->Initialize(pFilenamelFormatpSdkManager->GetIOSettings());
lExporter->Export(pScene);

You may also take a look at public sample ConvertScene, which shows how to export files with different format.



Jiayang Xu
Maya Data Platform
Autodesk

Replies: 2
/userdata/avatar/65df9nc33.JPG

Perfect Thanks.

Author: SimonWakley

Replied: 14 December 2010 01:03 PM  
/userdata/avatar/65df9nc33.JPG

Perfect Thanks.

Author: SimonWakley

Replied: 14 December 2010 01:03 PM