AnAL + full spritesheet
Posted: Tue Nov 18, 2014 4:58 pm
Hey guys, I have a trouble to set a sequence of animation with AnAL library.
Look this is a full spritesheet and I want to set each animation coordenades
this is my load code:
Look this is a full spritesheet and I want to set each animation coordenades
this is my load code:
Code: Select all
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
}
}