Animation while moving sprite?
Posted: Fri Mar 22, 2013 2:42 am
I'm using the anim8 library to move a sprite around - https://github.com/kikito/anim8. The problem I encounter is when I hold onto a key to move sprite in a particular direction, the animation freezes on the very last frame called. I want continous animation flow as I hold onto a key. Very similar to this posters request - viewtopic.php?f=4&t=24768, but using the anim8 lib. The difference here is that I'm guessing love.keyboard.isDown IS checking for a boolean value? Here's my code:
Code: Select all
local anim8 = require('lib.anim8.anim8')
local player, animation, g
function love.load()
player = {}
player.spritesheet = love.graphics.newImage('sprites/hero.png')
player. x = 200
player.y = 200
player.speed = 50
g = anim8.newGrid(16, 24, player.spritesheet:getWidth(), player.spritesheet:getHeight())
animation = anim8.newAnimation('loop', g('1-8,1-5'), 1.0)
end
function love.update(dt)
if love.keyboard.isDown("w") then
player.y = player.y - player.speed * dt
animation = anim8.newAnimation('loop', g('4-6,1'), 1.0)
elseif love.keyboard.isDown("s") then
player.y = player.y + player.speed * dt
animation = anim8.newAnimation('loop', g('1-3,1'), 1.0)
elseif love.keyboard.isDown("a") and player.x > 0 then
player.x = player.x - player.speed * dt
animation = anim8.newAnimation('loop', g('7-8,1'), 1.0)
elseif love.keyboard.isDown("d") and player.x < 10000 then
player.x = player.x + player.speed * dt
animation = anim8.newAnimation('loop', g('4,2'), 1.0)
end
animation:update(dt)
end
function love.draw()
animation:draw(player.spritesheet, player.x, player.y)
end
function love.keypressed(key)
if love.keyboard.isDown("escape") then
love.event.quit("quit")
end
end