From Luc Frauciel, "FBX plugin was locked on version 2012.1 of FBX SDK which is not available anymore on Autodesk website.

This patch allows version of FBX >= 2012.1, which includes current one : 2012.2
"
This commit is contained in:
Robert Osfield
2012-02-01 17:38:37 +00:00
parent 95f93e3bf5
commit 43f9a76169

View File

@@ -7,9 +7,9 @@
///////////////////////////////////////////////////////////////////////////
// OSG reader plugin for the ".fbx" format.
// See http://www.autodesk.com/fbx
// This plugin requires the FBX SDK version 2012.1
// This plugin requires the FBX SDK version 2012.1 or 2012.2
#if FBXSDK_VERSION_MAJOR != 2012 || FBXSDK_VERSION_MINOR != 1
#if FBXSDK_VERSION_MAJOR != 2012 || FBXSDK_VERSION_MINOR < 1
#error Wrong FBX SDK version
#endif