👍️[Update] Main/Controller/Model/Config : VRC ChatBoxの通知音のON/OFFのエンドポイントを追加

This commit is contained in:
misyaguziya
2025-02-18 14:23:02 +09:00
parent 36f25b7a21
commit 4b61178b0e
4 changed files with 32 additions and 2 deletions

View File

@@ -289,8 +289,8 @@ class Model:
def oscStopSendTyping(self):
self.osc_handler.sendTyping(flag=False)
def oscSendMessage(self, message, notification=True):
self.osc_handler.sendMessage(message=message, notification=notification)
def oscSendMessage(self, message:str):
self.osc_handler.sendMessage(message=message, notification=config.NOTIFICATION_VRC_SFX)
def getMuteSelfStatus(self):
return self.osc_handler.getOSCParameterMuteSelf()