Help with animating PNG files
I am haivng trouble incorporating png files into my lua script. I currently can load them into a table, like so.
player = {}
player[1] = Image.load("1.png")
player[2] = Image.load("2.png")
player[3] = Image.load("3.png")
player[4] = Image.load("4.png")
player[5] = Image.load("5.png")
but how do I go about printing them to the screen? Blitting them doesn't work because it is for single images and when i try it it tells me that it cannot blit "player" because it is a table. thx for any input.