Greetings Pythoneers.
I've got this problem and the problem is thus:
i have drawn a shape using pygame.draw.circle
i am finding it hard to make it move.
i tried self.move_to(self.x-5,self.y)
and also self.forward(random.randint(0,10))
(Where forward is defined as a function as self.x,self.y + 10
)<== I dont think i defined the function right in this test though.
Since (random.randint(0,10)) should move it a random number between 0,10 shouldnt it?
anyway any help on how to get it to move would be appreciated.
I hope i gave enough info. And you can keep it simple if you'd like i'm sure i'll probably be able to adapt it to my needs ^^
Thanks in advance
PS: I already have all the blitting and display flips and such in place.