This site requires JavaScript, please enable it in your browser!
Greenfoot back
Cett

Cett

Welcome to my page

Cett's scenarios

play Chloe

Cett's collections

This user has no collections

Recent Comments | Show All

Cett

2018/1/31

Thank you for the tips!
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); }