Hello, I would like some help with the method I created below. I want the actor to start moving continuously upon a single mouse click, but currently it only moves 1 pixel per mouse click - and spam clicking is not what I'm trying to do.
thx
public void clickStart()
{
if(Greenfoot.mouseClicked(this))
{
turnAtEdges(getImage().getWidth()/2,getImage().getHeight()/2);
move(-1);
}
}

