How do you use setImage(); to make an object invisible? Asking this because I don’t want my class to have an image, but Greenfoot makes image less objects look like feet.
you can do two things :
1 : getImage().setTransparency(0);
this will just make the image opacity to 0
2 : setImage((GreenfootImage)null);
this will set a null image, completely blank