Hacker News new | ask | show | jobs
by username90 2222 days ago
How much C++ you need depends on what kind of game you are making. You probably wont make a game like Civilization in blueprints.
1 comments

Which Civilization?

I'd say a lot depends on how much stuff you're doing every frame. From what I've seen, Epic is emphasizing you should avoid running blueprints every tick, and instead use event-driven programming heavily (or "steal" ticks from input handling), and then flip appropriate switches to remove anything that doesn't need updating every frame from even being issued a tick by the engine.