|
@@ -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)
|
|
|
{
|