So I have a picture of a plane and it is facing up(north), I am trying to make it move to where ever the plane's nose is facing. But with the code
"
if(Greenfoot.isKeyDown("up")==true)
{
move(5);
}
"
the plane is moving side way right. move() moves the actor to where ever the actor is facing, so the plane must be facing right but the
How do I change the direction the actor is facing?
