改正JudgeArea的范围和默认值
This commit is contained in:
@@ -62,7 +62,7 @@ namespace Ichni
|
||||
EditorManager.instance.projectInformation.projectName;
|
||||
string projectInfoPath = exportPath + "/ProjectInfo.bytes";
|
||||
string songInfoPath = exportPath + "/SongInfo.bytes";
|
||||
string beatmapPath = exportPath + "/BeatMap.bytes";
|
||||
string beatmapPath = exportPath + "/Beatmap.bytes";
|
||||
string commandScriptsPath = exportPath + "/CommandScripts.bytes";
|
||||
|
||||
LogWindow.Log("Start Exporting...");
|
||||
@@ -92,7 +92,7 @@ namespace Ichni
|
||||
private void ExportBeatMap(string exportPath)
|
||||
{
|
||||
EditorManager.instance.beatmapContainer.SaveBM();
|
||||
ES3.Save("BeatMap", EditorManager.instance.beatmapContainer.matchedBM as BeatmapContainer_BM,
|
||||
ES3.Save("Beatmap", EditorManager.instance.beatmapContainer.matchedBM as BeatmapContainer_BM,
|
||||
exportPath, ProjectManager.ExportSettings);
|
||||
}
|
||||
|
||||
@@ -135,7 +135,7 @@ namespace Ichni
|
||||
private void SaveBeatMap()
|
||||
{
|
||||
EditorManager.instance.beatmapContainer.SaveBM();
|
||||
ES3.Save("BeatMap", EditorManager.instance.beatmapContainer.matchedBM as BeatmapContainer_BM,
|
||||
ES3.Save("Beatmap", EditorManager.instance.beatmapContainer.matchedBM as BeatmapContainer_BM,
|
||||
EditorManager.instance.projectInformation.beatmapPath, ProjectManager.SaveSettings);
|
||||
}
|
||||
|
||||
@@ -172,7 +172,7 @@ namespace Ichni
|
||||
|
||||
private void LoadBeatMap()
|
||||
{
|
||||
ES3.Load<BeatmapContainer_BM>("BeatMap", EditorManager.instance.projectInformation.beatmapPath,
|
||||
ES3.Load<BeatmapContainer_BM>("Beatmap", EditorManager.instance.projectInformation.beatmapPath,
|
||||
ProjectManager.SaveSettings).ExecuteBM();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user