所以我想知道如何根据我按下/正在按下的键来更改我创建的角色图像?
我最终会在按下“d”(或任何wasd键)时出现行走动画,但是当刚刚按下“d”键等时他会静止不动。所有图像都已创建。
我已经尝试过了,但没有成功:
function love.load()
if love.keyboard.isDown("a") then
hero = love.graphics.newImage("/hero/11.png")
elseif love.keyboard.isDown("d") then
hero = love.graphics.newImage("/hero/5.png")
elseif love.keyboard.isDown("s") then
hero = love.graphics.newImage("/hero/fstand.png")
elseif love.keyboard.isDown("w") then
hero = love.graphics.newImage("/hero/1.png")
end
function love.draw()
love.graphics.draw(background)
love.graphics.draw(hero, x, y)
end