IsTargetMutedOnLocal
Namespace: SynicSugar.RTC
public bool IsTargetMutedOnLocal(UserId target)
Description
Whether the target is muted in this local
using SynicSugar.P2P;
using SynicSugar.RTC;
using UnityEngine;
public class VCSample : MonoBehaviour {
public void GetMuteState(UserId target){
string state = RTCManager.Instance.IsTargetMutedOnLocal(target) ? "Muted" : " NotMuted";
Debug.Log($"{target} is {state}");
}
}