Skip to content

Commit 1c46de4

Browse files
committed
Uni-37712-make-verbose-fbxexportsetting2
1 parent 67fa621 commit 1c46de4

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Assets/FbxExporters/Editor/FbxExportSettings.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -289,6 +289,8 @@ public class ExportSettings : ScriptableSingleton<ExportSettings>
289289
public const string kMayaOptionName = "Maya ";
290290
public const string kMayaLtOptionName = "Maya LT";
291291

292+
public bool Verbose = false;
293+
292294
private static string DefaultIntegrationSavePath {
293295
get{
294296
return Path.GetDirectoryName(Application.dataPath);

Assets/FbxExporters/Editor/FbxExporter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3480,7 +3480,7 @@ public void Dispose ()
34803480
{
34813481
}
34823482

3483-
public bool Verbose { private set {;} get { return false; } }
3483+
public bool Verbose { private set {;} get { return EditorTools.ExportSettings.instance.Verbose; } }
34843484

34853485
/// <summary>
34863486
/// manage the selection of a filename

0 commit comments

Comments
 (0)