Page 1 of 1

Snake type movement

Posted: Sun Dec 07, 2014 4:09 pm
by wilima
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.

Re: Snake type movement

Posted: Sun Dec 07, 2014 11:39 pm
by s-ol
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.
You can just make the animation "lag behind":

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