不要なコメントを削除

This commit is contained in:
ousttrue 2020-08-11 18:16:39 +09:00
parent 9ed4327316
commit 5f0d547eb1
2 changed files with 0 additions and 28 deletions

View File

@ -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<Animator>();
// if (animator == null)
// {
// return false;
// }
// return true;
// }
[MenuItem(CONVERT_HUMANOID_KEY, false, 1)]
private static void ExportFromMenu()
{

View File

@ -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
{