Ejemplo n.º 1
0
        private void LoadSetting()
        {
            var tmp = (List <sheetData>)VNBinaryManager.LoadFile(_settingFilePath);

            if (tmp != null)
            {
                sheetDataSet = tmp;
            }
        }
Ejemplo n.º 2
0
        private void SaveData(string fileName)
        {
            string filePath = Application.dataPath + _exportPath + fileName;

            VNBinaryManager.SaveFile(filePath, vnCommandSet);

            _dictId = 0;
            vnCommandSet.Clear();

            Debug.Log("Save success! : " + filePath);
        }
Ejemplo n.º 3
0
 private void SaveSetting()
 {
     Debug.Log("save setting.");
     VNBinaryManager.SaveFile(_settingFilePath, sheetDataSet);
 }