Skip to content

Commit 15333ce

Browse files
authored
Merge pull request #308 from Unity-Technologies/Uni-37712-make-verbose-fbxexportsetting2
Uni-37712-make-verbose-fbxexportsetting2
2 parents cafb48f + 1c46de4 commit 15333ce

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
@@ -3324,7 +3324,7 @@ public void Dispose ()
33243324
{
33253325
}
33263326

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

33293329
/// <summary>
33303330
/// manage the selection of a filename

0 commit comments

Comments
 (0)