Add a setting to hide socials from main menu

This commit is contained in:
2025-06-07 14:25:46 -07:00
parent 95a37395a1
commit 8f3ecfdab4
7 changed files with 434 additions and 21 deletions

View File

@@ -32,13 +32,15 @@ public class LoadingMenu : MonoBehaviour
SetIfNone("Setting1", 1);
SetIfNone("Setting2", 0);
SetIfNone("Setting3", 1);
SetIfNone("Setting4", 0);
Screen.fullScreen = PlayerPrefs.GetInt("Setting1", 1) == 1;
}
else
{
SetIfNone("Setting1", 1, true);
SetIfNone("Setting2", 0, true);
SetIfNone("Setting2", 0);
SetIfNone("Setting3", 1, true);
SetIfNone("Setting4", 0, true);
Application.targetFrameRate = 360;
QualitySettings.vSyncCount = 0;
if (Application.platform == RuntimePlatform.WebGLPlayer) {