Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

GameLoom Studio

2
Posts
2
Followers
A member registered Jun 04, 2022 · View creator page →

Creator of

Recent community posts

I’ve never been happy with any engine I’ve come across so I too make almost everything from scratch. External libraries I use is for the asset compiler for loading images and fonts.

I program in C++ with some custom language extensions.

By making the tech yourself you can custom tailor it to your needs and add features like:

  • asset hot-reloading,
  • code hot-reloading,
  • reflection (mostly useful for debugging purposes),
  • config system,
  • type safe shader invocations (no more accidentally writing wrong vertex type),
  • etc.

I never liked any scripting languages so I stick with C++ for game logic as well.

I don’t know if there is a single book that would cover indie game development. But here are some suggestions on various game development topics:

Of course what to read up on depends on what kind of games you’re making, but the above should cover at least the basics.