Merge branch 'oscVoiceMute' into develop
# Conflicts: # model.py
This commit is contained in:
12
config.py
12
config.py
@@ -892,6 +892,17 @@ class Config:
|
||||
self._ENABLE_LOGGER = value
|
||||
saveJson(self.PATH_CONFIG, inspect.currentframe().f_code.co_name, value)
|
||||
|
||||
@property
|
||||
@json_serializable('ENABLE_VRC_MIC_MUTE_SYNC')
|
||||
def ENABLE_VRC_MIC_MUTE_SYNC(self):
|
||||
return self._ENABLE_VRC_MIC_MUTE_SYNC
|
||||
|
||||
@ENABLE_VRC_MIC_MUTE_SYNC.setter
|
||||
def ENABLE_VRC_MIC_MUTE_SYNC(self, value):
|
||||
if isinstance(value, bool):
|
||||
self._ENABLE_VRC_MIC_MUTE_SYNC = value
|
||||
saveJson(self.PATH_CONFIG, inspect.currentframe().f_code.co_name, value)
|
||||
|
||||
@property
|
||||
@json_serializable('IS_CONFIG_WINDOW_COMPACT_MODE')
|
||||
def IS_CONFIG_WINDOW_COMPACT_MODE(self):
|
||||
@@ -1071,6 +1082,7 @@ class Config:
|
||||
self._ENABLE_SEND_RECEIVED_MESSAGE_TO_VRC = False # Speaker2Chatbox
|
||||
self._ENABLE_SPEAKER2CHATBOX_PASS = "000000000"
|
||||
self._ENABLE_LOGGER = False
|
||||
self._ENABLE_VRC_MIC_MUTE_SYNC = False
|
||||
self._IS_CONFIG_WINDOW_COMPACT_MODE = False
|
||||
|
||||
def load_config(self):
|
||||
|
||||
Reference in New Issue
Block a user