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 632f984 commit e81385cCopy full SHA for e81385c
Assets/FbxExporters/Editor/FbxExportSettings.cs
@@ -732,7 +732,7 @@ public static void SetRelativeSavePath(string newPath) {
732
public static string GetIntegrationSavePath()
733
{
734
//If the save path gets messed up and ends up not being valid, just use the project folder as the default
735
- if (instance.IntegrationSavePath.Trim() == "")
+ if (string.IsNullOrEmpty(instance.IntegrationSavePath.Trim()))
736
737
//The project folder, above the asset folder
738
Directory.GetCurrentDirectory().ToString();
0 commit comments