I'm currently attempting to remake pong and I've hit a bit of a snag. The ball rotates when it turns. Is there a way to keep the image level while changing the movement angle?
// add instance field private int rotation; // as first line in act method setRotation(rotation); // as last lines in act method rotation = getRotation(); setRotation(0);