Learning ma tools!

I really liked pygame so I tried to make a game with a bit of AI in it. Here's the link - https://github.com/amanj2718/dotsgame Will probably use pygame for pyweek. It's simple and gives a lot of easy to use functionality. Aman

(log in to comment)

Comments

I took a quick look at your repo and wanted to give you a heads up. Whenever you load an image, use convert: pygame.image.load(image_path).convert(). The difference can be massive. Some great tips here: http://www.pygame.org/docs/tut/newbieguide.html
Meant to say the difference in performance can be massive.
Oh cool. Thanks. :-)