JonathanJTang / snake-Python

A simple game programmed using Python
0 stars 1 forks source link

Game over screen #10

Open JonathanJTang opened 6 years ago

JonathanJTang commented 6 years ago

It should:

  1. Highlight the final score in some way
  2. Provide option to restart game under the same setting
  3. Provide option to return to main menu/options page
josephhtang commented 6 years ago

2 & 3 achieved. The difficulty of achieving 1 (Highlight the final score in some way) is using the same fancy font that's used to display "GAME OVER." I would have to make images of all digits from 0-9, and basing off the score, individually draw the digits with turtle.stamp() on the screen.