I want to resize my object when it collides with something and it works but now the object only looks smaller and doesn't act smaller. It should be half the size but it still acts the same size as before so it collides with other objects before they actually touch.
This is what I used for it:
1 2 3 | GreenfootImage image = getImage(); image.scale( 16 , 16 ); setImage(image); |