Skip to content

Commit a81e899

Browse files
committed
edit: edits name
1 parent 7a21bef commit a81e899

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Assets/Code/Editor/Save/SaveConfigExporterWindow.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public class SaveConfigExporterWindow : OdinEditorWindow
3030
private string GenerateJsonPath() =>
3131
_targetAsset != null ? Path.Combine(SaveFolderPath, $"{_targetAsset.name}_{DateTime.Now:yyyyMMdd_HHmmss}.json") : null;
3232

33-
[MenuItem("Tools/Save Window/Save Config Exporter Window")]
33+
[MenuItem("Tools/Save System Kit/Save Config Exporter Window")]
3434
private static void OpenWindow()
3535
{
3636
var window = GetWindow<SaveConfigExporterWindow>();

Assets/Code/Editor/Save/SaveWindow.cs renamed to Assets/Code/Editor/Save/ViewGameSavesWindow.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
namespace Code.Editor
1313
{
14-
public class SaveWindow : OdinEditorWindow
14+
public class ViewGameSavesWindow : OdinEditorWindow
1515
{
1616
private const string PlayerPrefsKey = "PlayerData";
1717
private const string JsonFileName = "player_data.json";
@@ -38,10 +38,10 @@ public class SaveWindow : OdinEditorWindow
3838
private bool showJson = true;
3939
private bool showXml = true;
4040

41-
[MenuItem("Tools/Save Window/All Saves Window")]
41+
[MenuItem("Tools/Save System Kit/View Game Saves Window")]
4242
private static void OpenWindow()
4343
{
44-
var window = GetWindow<SaveWindow>();
44+
var window = GetWindow<ViewGameSavesWindow>();
4545
window.titleContent = new GUIContent("All Saves Window");
4646
window.minSize = new Vector2(500, 600);
4747
window.Show();
File renamed without changes.

0 commit comments

Comments
 (0)