We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 380febb commit 6da09a5Copy full SHA for 6da09a5
Assets/FbxExporters/Editor/ConvertToModel.cs
@@ -86,6 +86,10 @@ private static List<GameObject> OnConvertInPlace ()
86
for(int i = 0; i < fbxFileNames.Length; i++)
87
{
88
var fbxFileName = fbxFileNames [i];
89
+ if (fbxFileName == null) {
90
+ Debug.Log (string.Format ("Warning: Export failed for GameObject {0}", gosToExport [i].name));
91
+ continue;
92
+ }
93
94
// make filepath relative to project folder
95
if (fbxFileName.StartsWith (Application.dataPath, System.StringComparison.CurrentCulture))
0 commit comments