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

@@ -572,7 +572,7 @@ public class GamePlayer : MonoBehaviour
Cursor.visible = true;
Cursor.lockState = CursorLockMode.None;
backgroundMusic.Pause();
pausePanel.SetActive(value: true);
pausePanel.SetActive(true);
}
public void DisablePause()
@@ -580,7 +580,7 @@ public class GamePlayer : MonoBehaviour
Cursor.visible = false;
Cursor.lockState = CursorLockMode.Locked;
backgroundMusic.Play();
pausePanel.SetActive(value: false);
pausePanel.SetActive(false);
}
void OnApplicationPause(bool pause)