I'm doing Exercise 3.33 and the getMicLevel method does not work. How is the program supposed to pick up noise? Is there a setting that I have to first allow permissions to use mic? I can easily record sound and use playSound method so I don't know what I am doing wrong. I'm using Windows 10 and version 3.6.1.
Here is my code so far:
public class Stickman extends Actor
{
public void act()
{
if(Greenfoot.getMicLevel()>3){
move(5);
}
}
}

