From 43f9a761695a22cc5bc89ffe9a1fd477460d13ef Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Wed, 1 Feb 2012 17:38:37 +0000 Subject: [PATCH] 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 " --- src/osgPlugins/fbx/ReaderWriterFBX.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/osgPlugins/fbx/ReaderWriterFBX.h b/src/osgPlugins/fbx/ReaderWriterFBX.h index 73738090c..99ce33ed9 100644 --- a/src/osgPlugins/fbx/ReaderWriterFBX.h +++ b/src/osgPlugins/fbx/ReaderWriterFBX.h @@ -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