Hey! love what you have so far!! I think something you should look into is having your actor move on an axis instead of turning? I found the moving forward while swiveling hard to adjust to! also you should make your actor be able to move backwards as well!
Here's an example of making your actor move on an axis:
if (Greenfoot.isKeyDown("up"))
{
setLocation(getX(), getY()-Speed);
}
2018/1/31
Chloe
2017/9/28
BringItToTheRunway
2017/9/14
Mortal Wombat
2017/9/7
The Little Crab
2017/9/7
Bugs