From 5f0d547eb1b0f7b8f54186df24f42c86b5583a82 Mon Sep 17 00:00:00 2001 From: ousttrue Date: Tue, 11 Aug 2020 18:16:39 +0900 Subject: [PATCH] =?UTF-8?q?=E4=B8=8D=E8=A6=81=E3=81=AA=E3=82=B3=E3=83=A1?= =?UTF-8?q?=E3=83=B3=E3=83=88=E3=82=92=E5=89=8A=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../UniVRM/Editor/Format/VRMExporterMenu.cs | 20 ------------------- .../UniVRM/Editor/Format/VRMExporterWizard.cs | 8 -------- 2 files changed, 28 deletions(-) diff --git a/Assets/VRM/UniVRM/Editor/Format/VRMExporterMenu.cs b/Assets/VRM/UniVRM/Editor/Format/VRMExporterMenu.cs index 53564a092..140349189 100644 --- a/Assets/VRM/UniVRM/Editor/Format/VRMExporterMenu.cs +++ b/Assets/VRM/UniVRM/Editor/Format/VRMExporterMenu.cs @@ -1,6 +1,4 @@ using UnityEditor; -using UnityEngine; - namespace VRM { @@ -8,24 +6,6 @@ namespace VRM { const string CONVERT_HUMANOID_KEY = VRMVersion.MENU + "/Export humanoid"; - // [MenuItem(CONVERT_HUMANOID_KEY, true, 1)] - // private static bool ExportValidate() - // { - // var root = Selection.activeObject as GameObject; - // if (root == null) - // { - // return false; - // } - - // var animator = root.GetComponent(); - // if (animator == null) - // { - // return false; - // } - - // return true; - // } - [MenuItem(CONVERT_HUMANOID_KEY, false, 1)] private static void ExportFromMenu() { diff --git a/Assets/VRM/UniVRM/Editor/Format/VRMExporterWizard.cs b/Assets/VRM/UniVRM/Editor/Format/VRMExporterWizard.cs index 9820762c0..35ff1cc48 100644 --- a/Assets/VRM/UniVRM/Editor/Format/VRMExporterWizard.cs +++ b/Assets/VRM/UniVRM/Editor/Format/VRMExporterWizard.cs @@ -581,14 +581,6 @@ namespace VRM return wizard; } - // // Magic Methods - - // // This is called when the wizard is opened or whenever the user changes something in the wizard. - // void OnWizardUpdate(); - - // // This is called when the user clicks on the Create button. - // void OnWizardCreate(); - // Allows you to set the create button text of the wizard. public string createButtonName {