mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-12 05:24:14 -05:00
field 上の方に移動
This commit is contained in:
parent
d39e61332b
commit
306fbb3e55
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user