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.
[SOLVED] Snake clone help
Forum rules
Before you make a thread asking for help, read this.
Before you make a thread asking for help, read this.
[SOLVED] Snake clone help
Last edited by DarkblooM on Tue Jan 14, 2025 3:50 pm, edited 1 time in total.
- BrotSagtMist
- Party member
- Posts: 680
- Joined: Fri Aug 06, 2021 10:30 pm
Re: Snake clone help
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})
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})
obey
Re: Snake clone help
Thank you very much!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})
Who is online
Users browsing this forum: Bing [Bot] and 7 guests