The Wayback Machine - https://web.archive.org/web/20211202204341/https://github.com/topics/game-dev
Skip to content
#

game-dev

game-development logo

Video game developers take a designer's concepts and build them into a playable game for users. Video game developers, also known as games developers or video game programmers, write code for games for a variety of formats, such as PCs, consoles, web browsers and mobile phones.

Here are 746 public repositories matching this topic...

Starbuck5
Starbuck5 commented Nov 22, 2021

In pygame 2.0, you can now put the arguments you would put into a pygame.Color object into any color field.

Despite this, I still see lots of code where people have a block at the top like:

WHITE = (255,255,255)
BLACK = (0,0,0)
BLUE = (0,0,255)

Even though that is now completely unnecessary, because pygame has named colors built in easily pass-able to functions.

So I though

Wikipedia
Wikipedia