Page 1 of 1

[SOLVED] Snake clone help

Posted: Tue Jan 14, 2025 2:37 pm
by DarkblooM
Hello

Trying to make a Snake clone, I can't seem to figure out why the snake's trail isn't displaying on screen.

Code: https://pastebin.com/i1fqFdBY

Enlightenment would be appreciated.

Re: Snake clone help

Posted: Tue Jan 14, 2025 3:26 pm
by BrotSagtMist
You are not making copies of the position here.
You merely link it.
Ergo your path points to the real snake.
Try:
table.insert(snake.path, 1, {x=snake.pos.x,y=snake.pos.y})

Re: Snake clone help

Posted: Tue Jan 14, 2025 3:49 pm
by DarkblooM
BrotSagtMist wrote: Tue Jan 14, 2025 3:26 pm You are not making copies of the position here.
You merely link it.
Ergo your path points to the real snake.
Try:
table.insert(snake.path, 1, {x=snake.pos.x,y=snake.pos.y})
Thank you very much!