I’m trying to use the microphone in 3.5. So far I get nothing. I can’t get any indication that it’s working.
I checked out the connected devices using this code
for (var device in Microphone.devices)
{
display+="Name: " + device + "
";
}
And I’m using a Blue Snowball – a mic that’s connected. My code looks like this
audio.clip = Microphone.Start("Blue Snowball", true, 10, 44100);
audio.Play();
How do I tell if anything is working. I have an audio source on the main gameObject that the code above is attached to and there is an audio listener on the camera. In the inspector it says microphone but I’m not seeing anything.
The mic I have “Blue Snowball” works fine for ichat and other input so it’s working.