Example #1
0
 private void OnDisable()
 {
     XMLUtility.Save(m_prefix + "m_spritePath", m_spritePath);
     XMLUtility.Save(m_prefix + "m_outputPath", m_outputPath);
     //XMLUtility.Save(m_prefix + "m_isRename", m_isRename);
     XMLUtility.Save(m_prefix + "m_cutStr", m_cutStr);
 }
Example #2
0
        private void OnOutPutlPathBorwseButtonDown()
        {
            var paths = StandaloneFileBrowser.OpenFolderPanel("导出地址", "", true);

            if (paths.Length > 0)
            {
                m_outputPath = paths[0];
                XMLUtility.Save(m_savePrefix + "m_outputPath", m_outputPath);
            }
        }
Example #3
0
        private void OnExcelPathBorwseButtonDown()
        {
            var paths = StandaloneFileBrowser.OpenFilePanel("配置地址", "", "xlsx", true);

            if (paths.Length > 0)
            {
                m_excelPath = paths[0];
                XMLUtility.Save(m_savePrefix + "m_excelPath", m_excelPath);
            }
        }