From c3850df08c4601600442f7f19cc1ec71be37f406 Mon Sep 17 00:00:00 2001 From: ousttrue Date: Thu, 1 Oct 2020 12:02:46 +0900 Subject: [PATCH] remove unused --- .../UniVRM/Editor/Format/VRMExporterWizard.cs | 30 ------------------- 1 file changed, 30 deletions(-) diff --git a/Assets/VRM/UniVRM/Editor/Format/VRMExporterWizard.cs b/Assets/VRM/UniVRM/Editor/Format/VRMExporterWizard.cs index a07c9737f..ad08ce607 100644 --- a/Assets/VRM/UniVRM/Editor/Format/VRMExporterWizard.cs +++ b/Assets/VRM/UniVRM/Editor/Format/VRMExporterWizard.cs @@ -366,36 +366,6 @@ namespace VRM return wizard; } - // Allows you to set the create button text of the wizard. - public string createButtonName - { - get { return m_CreateButton; } - set - { - var newString = value ?? string.Empty; - if (m_CreateButton != newString) - { - m_CreateButton = newString; - Repaint(); - } - } - } - - // Allows you to set the other button text of the wizard. - public string otherButtonName - { - get { return m_OtherButton; } - set - { - var newString = value ?? string.Empty; - if (m_OtherButton != newString) - { - m_OtherButton = newString; - Repaint(); - } - } - } - const string EXTENSION = ".vrm"; private static string m_lastExportDir;