I read chapter 3 and went through all the exercises 3-4 times. Still do not understand how to do number 3.32.
So far i've got. The second part isn't even mine. I saw another guy post on here about the same question and basically used his with different code.
I dont understand what they want me to do when it says "Using an if-statement and the microphone input method you found above, make the stickman move right only when you make some noise. Experiment with different values for the noise level." (how do i do that ?). The last 2 chapters were easy compared to this and now i feel like an idiot.
public class Stickman extends Actor
{
/**
* Make the stickman act.
*/
public void act()
{
Play();
}
/** play music and move stickman
*
*/
public void Play()
{
Greenfoot.playSound("hit.wav");
move(3);
}
}
