Posts tagged: gamedev

All posts with the tag "gamedev"

4 posts latest post 2025-09-04
Publishing rhythm
Sep 2025 | 1 posts
Home Free online tools for people creating pixel art and other low-spec art. Lospec · lospec.com [1] My son introduced me to lospec.com, It has a great set of color palettes and amazing pixel art inspiration. I particularly liked royal armoury [2] and of course I’m a bit partial to hollow [3]. Note This post is a thought [4]. It’s a short note that I make about someone else’s content online #thoughts References: [1]: https://lospec.com/ [2]: https://lospec.com/palette-list/royal-armoury [3]: https://lospec.com/palette-list/hollow [4]: /thoughts/
- Great conversation with Billy Basso the creator of Animal Well on the code architecture of Animal well. It’s all hand crafted C++. He talks about early games he tried to build being heavy in oop, and really got lost in oop. Animal well is very flat, there is no inheritance, just lists of entities that all implement similar methods in their own way. Layering and order of entities becomes very important. Its crazy how much he had to think about hardware and MS build being very helpful with this, but needing to know all of the console apis. Note This post is a thought [1]. It’s a short note that I make about someone else’s content online #thoughts References: [1]: /thoughts/
- So many small details go into making hollow knight such a great game, but it starts with such good controls, every thing is so fluid and predictable. I knew about coyote time, but not some of the other details that Juniper covers, such as hang time, and faster decent than jump. Note This post is a thought [1]. It’s a short note that I make about someone else’s content online #thoughts References: [1]: /thoughts/
I’m poking a bit into gamedev. Partly to better understand, partly because it’s stretching different parts of my brain/skillset than writing data pipelines does, but mostly for the experience of designing them with my 9yo Wyatt. pygame boilerplates # [1] I’ve seen several pygame boilerplate templates, but they all seem to rely heavily on globl variables. That’s just not how I generally develop anything. I want a package that I can pip install, run, import, test, all the good stuff. My current starter # [2] What currently have is a single module starter package that is on github so that I can install it and start building games with very little code. Installation # [3] Since it’s a package on GitHub you can install it with the git [4]+ prefix. pip install git+https://github.com/WaylonWalker/pygame-starter Example Game # [5] You can make a quick game by inheriting from Game, and calling .run(). This example just fills the screen with an aqua color, but you can put all of your game logic in the game method. from pygame_starer import Game class MyGame(Game): def game(self): self.screen.fill((128, 255, 255)) if __name__ == "__main__": game = MyGame() game.run() The st...