Re-add loading stuff that was removed temp

This commit is contained in:
2025-08-20 19:36:13 -07:00
parent b912116539
commit 230fdc5132
5 changed files with 67 additions and 17 deletions

View File

@@ -12,9 +12,9 @@ public class HideIfSettingFalse : MonoBehaviour {
bool GetSettingValue(SettingTypes s) {
var b = BazookaManager.Instance;
return s switch {
SettingTypes.FullScreen => b.GetSettingFullScreen() ?? false,
SettingTypes.FullScreen => b.GetSettingFullScreen(),
SettingTypes.ShowFPS => b.GetSettingShowFPS(),
SettingTypes.Vsync => b.GetSettingVsync() ?? false,
SettingTypes.Vsync => b.GetSettingVsync(),
SettingTypes.HideSocials => b.GetSettingHideSocials() ?? false,
_ => false
};