Hi, so, im having a problem with my program: im trying to make it so, that the image changes if the rotation equals 180. Problem is i'm stupid, and the image is just on its head. Here direction is an integer that equals getRotation()
my project is also on here, so if you care to try it out and point out some more issues, please tell me
http://www.greenfoot.org/scenarios/21219
P.S. - i know that the platforms dont work properly
if(!isOnSolidGround() && direction == 180)
{
setImage("4alt2.png");
}
if(!isOnSolidGround() && direction == 0)
{
setImage("4.png");
}
