From 23168e84a18cc42b9752b27e062087add56e22d3 Mon Sep 17 00:00:00 2001 From: Nouman Riaz Khan Date: Thu, 28 Mar 2019 14:37:43 +0500 Subject: [PATCH] typo fixed --- utils/exporters/fbx/modules/win/Python26_x86/FbxCommon.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/exporters/fbx/modules/win/Python26_x86/FbxCommon.py b/utils/exporters/fbx/modules/win/Python26_x86/FbxCommon.py index fa84010840a8b2..9b155a7cdc25c9 100644 --- a/utils/exporters/fbx/modules/win/Python26_x86/FbxCommon.py +++ b/utils/exporters/fbx/modules/win/Python26_x86/FbxCommon.py @@ -19,7 +19,7 @@ def InitializeSdkObjects(): def SaveScene(pSdkManager, pScene, pFilename, pFileFormat = -1, pEmbedMedia = False): lExporter = KFbxExporter.Create(pSdkManager, "") - if pFileFormat < 0 or pFileFormat >= pSdkManager.GetIOPluginRegistry().GetWriteFormatCount(): + if pFileFormat < 0 or pFileFormat >= pSdkManager.GetIOPluginRegistry().GetWriterFormatCount(): pFileFormat = pSdkManager.GetIOPluginRegistry().GetNativeWriterFormat() if not pEmbedMedia: lFormatCount = pSdkManager.GetIOPluginRegistry().GetWriterFormatCount() @@ -64,4 +64,4 @@ def LoadScene(pSdkManager, pScene, pFileName): result = lImporter.Import(pScene) lImporter.Destroy() - return result \ No newline at end of file + return result