Hello from Czech Republic!
I have a question about my code and my solution of snake movement.
Here is a code: https://bitbucket.org/wilima/snake-try/ ... ?at=master
Its about how to code a continuous movement in grid. This solution can have a problem if I want create some "smooth" movement animation right?
Thank you for any help.
Snake type movement
Forum rules
Before you make a thread asking for help, read this.
Before you make a thread asking for help, read this.
Re: Snake type movement
You can just make the animation "lag behind":wilima wrote:Hello from Czech Republic!
I have a question about my code and my solution of snake movement.
Here is a code: https://bitbucket.org/wilima/snake-try/ ... ?at=master
Its about how to code a continuous movement in grid. This solution can have a problem if I want create some "smooth" movement animation right?
Thank you for any help.
Code: Select all
function love.draw()
local dx, dy = .... -- dx,dy = direction of next move (one is either -1 or 1, the other is 0)
love.graphics.rectangle("fill", grid.board[player.x][player.y].x + dx*(dt/0.2), grid.board[player.x][player.y].y + dy*(dt/0.2), grid.squareSize, grid.squareSize)
end
s-ol.nu
Code: Select all
print( type(love) )
if false then
baby:hurt(me)
end
Who is online
Users browsing this forum: Bing [Bot] and 8 guests