remove unused

This commit is contained in:
ousttrue
2020-10-01 12:02:46 +09:00
parent 00db63b2f6
commit c3850df08c

View File

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