Hacker News

Favorites Setup
Comment by andai | original | What to learn to be a graphics programmer
[−]andai · 2026-07-02 Thu 00:39 UTC · link
Two years? Why does it take two years?
[−]TheSamFischer · 2026-07-02 Thu 00:55 UTC · link
Unless you’ve written one before, it’s the natural learning curve.

You can always generate one using LLM if you don’t care about how it actually works.

[−]dahart · 2026-07-02 Thu 05:45 UTC · link
And if you have written one before, it might take five years. ;)

At least, that was my actual experience at a game studio. The engine team wanted to rewrite the engine but underestimated how much was there, how much was worth keeping, and how much work needed to be done. But that was a long time ago, and the studio’s now on Unreal.

[−]flohofwoe · 2026-07-02 Thu 08:12 UTC · link
> You can always generate one using LLM if you don’t care about how it actually works.

Lol, right. That might work for some of the runtime parts of a very simple engine, but not the other 90%. Especially when you "don't care about how it actually works". A game engine easily exceeds the complexity of an entire operating system (not necessarily in line count, but in required features).

[−]legends2k · 2026-07-02 Thu 06:34 UTC · link
Two if you're lucky, and work full time on it. More like 5+ plus if you are inexperienced/part time.
[−]flohofwoe · 2026-07-02 Thu 08:05 UTC · link
Because 90% of the work on an engine goes into the tooling (DCC tool exporters, asset pipelines, editor tools, ...), and that is a never ending rabbit hole that's never quite finished.

IME two years sounds about right starting from scratch until getting everything into a usable state. You can start earlier building a game on the in-progress-engine and develop of course (and tbh that's the only sensible way to not develop an entirely useless engine, but you'll also end up with an engine that's mostly only useful for that one game, and progress on the game will be atricious in the first year or so), and of course developing both side by side means spreading the butter even thinner.

In the end though I have seen at least as many game projects fail using Unity compared to using an inhouse engine. The decision to use inhouse tech versus off-the-shelf engine doesn't make or break a game, in the end the problem is always within the team (but the engine is usually blamed first when things went south heh).