lectri / Snake

A simple snake game made using Python. To practice my programming skill.
1 stars 0 forks source link

Snake Grows Too Slow #8

Closed lectri closed 3 years ago

lectri commented 3 years ago

The snake doesn't grow fast enough. It takes around 20 eats of an apple for the length to be medium. This needs to be reduced some way.

lectri commented 3 years ago

Potential Fix: Append more sprites to the sprite list and snake will grow faster. It seems making four sprites at a time is a reasonable growth rate. May result in high memory rates though.

lectri commented 3 years ago

Potential Fix: Append more sprites to the sprite list and snake will grow faster. It seems making four sprites at a time is a reasonable growth rate. May result in high memory rates though.

Implemented this fix, but this is not the best solution. Closing this issue, but I feel there's a less RAM-demanding way to handle this issue.