kyo = love.graphics.newImage("kyo/kyo.png")
player = {
x = 50,
y = 50,
speed = 300,
animations = {
right = newAnimation(kyo, 56, 116, 0.1, 0) --walking to the right
}
}
Although i am not familiar with the ANAL Lib, In order to create an animation sequence from that sprite sheet you would be required to create custom functions due to the fact that each character sequence has different dimensions and timing.
For ease of use, you will probably want to split each set of animations into their own sheets. You'll also want to have them spaced evenly. You could use the GIMP for this.