private void Start()
        {
            PointstopBar = GameObject.Find("PointstopBar");
            MicInterface = GameObject.Find("Mic (Enabled)");

            PointstopBar.SetActive(false);
            MicInterface.SetActive(false);
        }
Esempio n. 2
0
 private void SetStyling()
 {
     if (MicInterface.AllMuted())
     {
         SetMutedStyling();
     }
     else
     {
         SetUnMutedStyling();
     }
 }
Esempio n. 3
0
 private void MuteToggleButton_Click(object sender, RoutedEventArgs e)
 {
     MicInterface.ToggleAllMicMute();
     SetStyling();
 }