[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

Re: [pygame] blit a list containing surfaces



Make a counter and an Update function, then index into the list:

counter = 0
...

def Update():
    global counter
    counter = (counter+1)%6
def Draw():
    #blit my_list[counter]