From 306fbb3e55d5b0ccef10e64f9c25c0e5a7a0ec2d Mon Sep 17 00:00:00 2001 From: ousttrue Date: Thu, 1 Oct 2020 12:14:50 +0900 Subject: [PATCH] =?UTF-8?q?field=20=E4=B8=8A=E3=81=AE=E6=96=B9=E3=81=AB?= =?UTF-8?q?=E7=A7=BB=E5=8B=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../UniVRM/Editor/Format/VRMExporterWizard.cs | 34 +++++++++---------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/Assets/VRM/UniVRM/Editor/Format/VRMExporterWizard.cs b/Assets/VRM/UniVRM/Editor/Format/VRMExporterWizard.cs index c43eaa85f..eaa9cf1db 100644 --- a/Assets/VRM/UniVRM/Editor/Format/VRMExporterWizard.cs +++ b/Assets/VRM/UniVRM/Editor/Format/VRMExporterWizard.cs @@ -21,6 +21,23 @@ namespace VRM VRMExporterWizard.CreateWizard(); } + enum Tabs + { + Meta, + Mesh, + ExportSettings, + } + Tabs _tab; + + GUIStyle TabButtonStyle => "LargeButton"; + + // GUI.ToolbarButtonSize.FitToContentsも設定できる + GUI.ToolbarButtonSize TabButtonSize => GUI.ToolbarButtonSize.Fixed; + const string EXTENSION = ".vrm"; + + private static string m_lastExportDir; + + GameObject ExportRoot; VRMExportSettings m_settings; @@ -249,19 +266,6 @@ namespace VRM } } - enum Tabs - { - Meta, - Mesh, - ExportSettings, - } - Tabs _tab; - - GUIStyle TabButtonStyle => "LargeButton"; - - // GUI.ToolbarButtonSize.FitToContentsも設定できる - GUI.ToolbarButtonSize TabButtonSize => GUI.ToolbarButtonSize.Fixed; - bool DrawWizardGUI() { if (m_tmpMeta == null) @@ -312,10 +316,6 @@ namespace VRM return wizard; } - const string EXTENSION = ".vrm"; - - private static string m_lastExportDir; - public static void CreateWizard() { var wiz = VRMExporterWizard.DisplayWizard();