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

Re: [pygame] collidelist Problem, indices



Not sure about this... try "self.i-1" for the index.
In case you didn't know, here's why:
my_array = [100, 200, 300, 400]
my_array[0] = 100
my_array[1] = 200
my_array[2] = 300
my_array[3] = 400
good luck!
Ian