コード例 #1
0
 void RefreshEditorWindow()
 {
     if (m_subWindow == null)
     {
         m_subWindow = CharaCellEditorSub.WillAppear(this);
     }
     else
     {
         m_subWindow.Focus();
     }
     m_subWindow.init();
 }
コード例 #2
0
        void OpenEditorWindow()
        {
            if (m_subWindow != null)
            {
                m_subWindow.Close();
            }

            if (m_subWindow == null)
            {
                m_subWindow = CharaCellEditorSub.WillAppear(this);
            }
            else
            {
                m_subWindow.Focus();
            }
            m_subWindow.init();
        }