private void LoadSetting() { var tmp = (List <sheetData>)VNBinaryManager.LoadFile(_settingFilePath); if (tmp != null) { sheetDataSet = tmp; } }
private void SaveData(string fileName) { string filePath = Application.dataPath + _exportPath + fileName; VNBinaryManager.SaveFile(filePath, vnCommandSet); _dictId = 0; vnCommandSet.Clear(); Debug.Log("Save success! : " + filePath); }
private void SaveSetting() { Debug.Log("save setting."); VNBinaryManager.SaveFile(_settingFilePath, sheetDataSet); }