How to torn off using mic on ios14?

Jim
Jim
edited April 2021 in Photon Voice

Hi
How to torn off using mic while i'm not speaking on ios, so that yellow dot on ios (that shows on ios 14, that the game is using microphone) does not show up, and not annoys players?

Best Answer

  • JohnTube
    JohnTube ✭✭✭✭✭
    edited April 2021 Answer ✓
    Hi @Jim,

    Thank you for choosing Photon!

    In order to stop using the microphone the Recorder component needs to stop recording via:
    recorder.StopRecording();
    
    or
    recorder.IsRecording = false;
    

Answers

  • JohnTube
    JohnTube ✭✭✭✭✭
    edited April 2021 Answer ✓
    Hi @Jim,

    Thank you for choosing Photon!

    In order to stop using the microphone the Recorder component needs to stop recording via:
    recorder.StopRecording();
    
    or
    recorder.IsRecording = false;
    
  • Thanks 😊