Suggest a changeSuccess!
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
CloseSubmission failed
For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.
Close Switch to Manualpublic static
var devices: string[];
public static string[] devices;
Description
A list of available microphone devices, identified by name.
You can use the name with the Start and End functions to specify which microphone you wish to start/stop recording.
// Get list of Microphone devices and print the names to the log
function Start () {
for (var device in Microphone.devices)
{
Debug.Log("Name: " + device);
}
}
no example available in C#