From the course: Building the Classic Snake Game with Python

Unlock the full course today

Join today to access over 24,700 courses taught by industry experts.

Personalizing your game

Personalizing your game

- You now have a fully working snake game. Well done for getting this far. Whatever your level, I encourage you to experiment with the code, play with it. For example, you could change some colors or the speed of this snake. You could even add extra functionality, like a two player version. There's a game called Tron that you may be familiar with, which is kind of like a two player version of snake. So you could go down that road if you wanted. for this project, we haven't actually used any images. Although, Turtle graphics does have the capacity to use images. So rather than actually drawing these stamps, you could use actual images for the game. I'm going to show you just a few of these possible changes now. So, Let's change the background color. (keyboard clicking) And let's change the size of the window. (continuing keyboard clicking) Maybe 800 by 600. (continuing keyboard clicking) And the shape of the turtle... currently is set to... square for the stamper, for the snake. Let's…

Contents