msa@mastodon.sdf.orgtoProgramming@beehaw.org•Humble advice for those who want to switch to game development
2·
20 hours ago@luciole @modev I think that’s terrible advice. A lot of games are written in C/C++ and building something yourself is a good way to learn. Game Engines don’t always help in fact I would say a framework + a couple helpful libraries is going to make you much faster at programming a game than a game engine ever will.
@ICastFist Writing things yourself is not “learning a specific programming language though”. It helps you understand the fundamental concepts and implementation details of how things actually work under the hood which are universal towards game dev. Ie. Writing your own renderer and learning about the rendering pipeline. You learn far less from a game engine. I would rather write a system myself and understand it than fiddle with someone else’s implementation and pray that it works for my needs.