瀏覽代碼

修改声音默认为静音模式

大爷 1 年之前
父節點
當前提交
485a456366

+ 1 - 1
Unity/Assets/Scripts/Codes/HotfixView/Client/Sound/SoundManager.cs

@@ -43,7 +43,7 @@ public class SoundManager : Singleton<SoundManager>, ISingletonAwake
         UnityAudioSource.volume = 1f;
         UnityAudioSource.playOnAwake = false;
 
-        var mute = GameSetting.Instance.GetBool(GameSetting.Sets.Mute_int);
+        var mute = GameSetting.Instance.GetBool(GameSetting.Sets.Mute_int, GameSetting.Cnst_Mute);
         UnityAudioSource.mute = mute;
     }
 

+ 5 - 3
Unity/Assets/Scripts/Codes/Model/Client/GameSetting.cs

@@ -4,18 +4,20 @@ namespace ET
 {
     public class GameSetting : Singleton<GameSetting>
     {
+        public const bool Cnst_Mute = true;     //静音
+
         public enum Sets
         {
             Mute_int,
             Server_str,
             Resolution_int,
-            TiktokRoomId_int,
+            //TiktokRoomId_int,
         }
 
-        public bool GetBool(Sets sets)
+        public bool GetBool(Sets sets, bool defaultvalue = false)
         {
             var key = sets.ToString();
-            return PlayerPrefs.GetInt(key, 0) != 0;
+            return PlayerPrefs.GetInt(key, defaultvalue ? 1 : 0) != 0;
         }
         public void SetBool(Sets sets, bool value)
         {