You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -51,7 +52,8 @@ public static void ShowSupportButtons(Func<GUIContent, bool> buttonRenderer)
51
52
MODActions.ShowLogFolder();
52
53
}
53
54
54
-
if(buttonRenderer(newGUIContent("Show Saves","Clearing your save files can fix some issues with game startup, and resets all mod flags.\n\n"+
55
+
if(buttonRenderer(newGUIContent("Show Saves","Click to open the save folder, which includes saves, quicksaves, and global save data\n\n"+
56
+
"Clearing your save files can fix some issues with game startup, and resets all mod flags.\n\n"+
55
57
"- WARNING: Steam cloud will restore your saves if you manually delete them! Therefore, remember to disable steam cloud, otherwise your saves will magically reappear!\n"+
56
58
"- The 'global.dat' file stores your global unlock process and mod flags\n"+
57
59
"- The 'qsaveX.dat' and 'saveXXX.dat' files contain individual save files. Note that these becoming corrupted can break your game\n"+
@@ -60,17 +62,46 @@ public static void ShowSupportButtons(Func<GUIContent, bool> buttonRenderer)
60
62
MODActions.ShowSaveFolder();
61
63
}
62
64
65
+
GUILayout.EndHorizontal();
66
+
}
67
+
68
+
MODMenuCommon.Label("Quick Access to Game Folders");
69
+
{
70
+
GUILayout.BeginHorizontal();
71
+
if(buttonRenderer(newGUIContent("Show .assets Folder","Click to open the game's main data folder, which contains the .assets files.\n\n"+
72
+
"Fonts, certain textures, and other game data is kept in the sharedassets0.assets file.")))
73
+
{
74
+
Application.OpenURL(Application.dataPath);
75
+
}
76
+
77
+
if(buttonRenderer(newGUIContent("Show StreamingAssets Folder","Click to open the StreamingAssets folder, which contains most of the game assets.\n\n"+
78
+
"- Most Images/Textures, including Sprites, Backgrounds, Text Images, and Filter effects\n"+
79
+
"- Voices, Background Music, and Sound Effects\n"+
if(buttonRenderer(newGUIContent("Show Compiled Scripts","Sometimes out-of-date scripts can cause the game to fail to start up (stuck on black screen).\n\n"+
64
95
"You can manually clear the *.mg files (compiled scripts) in this folder to force the game to regenerate them the next time the game starts.\n\n"+
65
96
"Please be aware that the game will freeze for a couple minutes on a white screen, while scripts are being compiled.")))
66
97
{
67
98
MODActions.ShowCompiledScripts();
68
99
}
69
100
70
-
71
101
GUILayout.EndHorizontal();
72
102
}
73
103
104
+
MODMenuCommon.Label("Support Pages");
74
105
if(buttonRenderer(newGUIContent("Open Support Page: 07th-mod.com/wiki/Higurashi/support","If you have problems with the game, the information on this site may help.\n\n"+
75
106
"There are also instructions on reporting bugs, as well as a link to our Discord server to contact us directly")))
0 commit comments