Snake type movement

Questions about the LÖVE API, installing LÖVE and other support related questions go here.
Forum rules
Before you make a thread asking for help, read this.
Post Reply
wilima
Prole
Posts: 1
Joined: Sun Dec 07, 2014 4:06 pm

Snake type movement

Post 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.
User avatar
s-ol
Party member
Posts: 1080
Joined: Mon Sep 15, 2014 7:41 pm
Location: Milan, Italy
Contact:

Re: Snake type movement

Post 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

s-ol.nu

Code: Select all

print( type(love) )
if false then
  baby:hurt(me)
end
Post Reply

Who is online

Users browsing this forum: Bing [Bot] and 7 guests