Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(+1)

Ah, makes sense. You should try making use of multiple files next time. The code seemed like a mess to go through. In python you  can do import class from file,  import * from file, or just import file and do file.class. You can make some really great 2D games on pygame like this https://store.steampowered.com/app/2824730/Yawnoc/ Some extra coding tips: look into classes (essential for large projects),  try to define classes outside of loops (no need to redefine), avoid using globals (they can create a lot of extra memory, are slow, and less readable). Try viewing some python tutorials, great language to learn. Overall, this was pretty impressive for a pygame project, I wish you luck.

(+1)

oh, thanks yeah, I'll look into that import file thing seems like a good idea lol