diff --git a/Assets/VRM10/Editor/Vrm10ExportDialog.cs b/Assets/VRM10/Editor/Vrm10ExportDialog.cs index e67e7545f..937bd6f6f 100644 --- a/Assets/VRM10/Editor/Vrm10ExportDialog.cs +++ b/Assets/VRM10/Editor/Vrm10ExportDialog.cs @@ -15,8 +15,7 @@ namespace UniVRM10 { public static void Open() { - var window = (VRM10ExportDialog)GetWindow(typeof(VRM10ExportDialog)); - window.titleContent = new GUIContent("VRM-1.0 Exporter"); + var window = GetWindow("VRM-1.0 Exporter"); window.Show(); } @@ -203,7 +202,7 @@ namespace UniVRM10 } } } - + EditorGUILayout.Separator(); GUI.enabled = backup; } @@ -302,7 +301,8 @@ namespace UniVRM10 { m_logLabel += ex.ToString(); // rethrow - throw; + //throw; + Debug.LogException(ex); } } }