field 上の方に移動

This commit is contained in:
ousttrue 2020-10-01 12:14:50 +09:00
parent d39e61332b
commit 306fbb3e55

View File

@ -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();