示例#1
0
 /// <summary>
 /// Called when the server updates the group's mute state
 /// </summary>
 /// <param name="mute"></param>
 public void SERVER_SetMute(bool mute)
 {
     m_Muted = mute;
     SERVER_OnGroupUpdated?.Invoke();
 }
示例#2
0
 /// <summary>
 /// Called when the server notifies us of a stream change
 /// </summary>
 /// <param name="id"></param>
 public void SERVER_SetStream(string id)
 {
     m_StreamId = id;
     SERVER_OnGroupUpdated?.Invoke();
 }
示例#3
0
 /// <summary>
 /// Called when the server updates the group's name
 /// </summary>
 /// <param name="name"></param>
 public void SERVER_SetName(string name)
 {
     m_Name = name;
     SERVER_OnGroupUpdated?.Invoke();
 }