Skip to content

Commit 9ccffbb

Browse files
committed
edit: files
1 parent 0a47eb3 commit 9ccffbb

File tree

8 files changed

+15
-6
lines changed

8 files changed

+15
-6
lines changed

Assets/Code/Editor/GameEditor.asmdef

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
"references": [
55
"GUID:ef2b2b1038ddf9e4d8fc7d30b780ec08"
66
],
7-
"includePlatforms": [],
8-
"excludePlatforms": [
7+
"includePlatforms": [
98
"Editor"
109
],
10+
"excludePlatforms": [],
1111
"allowUnsafeCode": false,
1212
"overrideReferences": false,
1313
"precompiledReferences": [],

Assets/Code/Editor/Save.meta

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
File renamed without changes.
File renamed without changes.

Assets/Code/Editor/SaveConfigExporterWindow.cs.meta renamed to Assets/Code/Editor/Save/SaveConfigExporterWindow.cs.meta

File renamed without changes.
Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ protected override void DrawEditor(int index)
6161
private void DrawFoldoutSection(ref bool foldout, string title, string path, string message, string data, ref Vector2 scroll, Action refresh, Action delete)
6262
{
6363
foldout = SirenixEditorGUI.Foldout(foldout, title);
64-
if (!foldout) return;
64+
if (!foldout)
65+
return;
6566

6667
SirenixEditorGUI.BeginBox();
6768

@@ -83,12 +84,12 @@ private void DrawFoldoutSection(ref bool foldout, string title, string path, str
8384

8485
GUILayout.Space(10);
8586
GUI.backgroundColor = new Color(0.6f, 0.9f, 1f);
86-
if (GUILayout.Button("🔄 Refresh", GUILayout.Height(35)))
87+
if (GUILayout.Button("Refresh", GUILayout.Height(35)))
8788
refresh.Invoke();
8889

8990
GUILayout.Space(5);
9091
GUI.backgroundColor = new Color(1f, 0.4f, 0.4f);
91-
if (GUILayout.Button("🗑 Delete", GUILayout.Height(35)))
92+
if (GUILayout.Button("Delete", GUILayout.Height(35)))
9293
delete.Invoke();
9394

9495
GUI.backgroundColor = Color.white;
@@ -182,7 +183,7 @@ private void DeletePlayerPrefs()
182183
{
183184
PlayerPrefs.DeleteKey(PlayerPrefsKey);
184185
PlayerPrefs.Save();
185-
Debug.Log("PlayerPrefs deleted.");
186+
Debug.Log("PlayerPrefs file deleted.");
186187
Refresh();
187188
}
188189
}
File renamed without changes.

0 commit comments

Comments
 (0)