upvote
Also AAA dev, this is true but also the original comment about “engine feel” still holds, since the whole point is studios are trying to spend less time engine wrangling, and keep to more “the Unreal way”. I’ve noticed over the last 15 years AAA studios do less custom c++ and have converted legacy home built systems to use unreal built ins more and more. It happened slowly so I didn’t notice it but in retrospect it’s really obvious.
reply
There’s definitely some hallmarks (right click on a text box in any unreal game and I’d say there’s a 90% chance of you getting a raw slate paste action menu) - but I don’t think that defines the engine.

I think working around shader compiles is really tough in Unreal and you’ll struggle to get rid of the stutters even if you do everything you can there. But two games using chaos, UMG, niagara, GAS, and Mover can look and feel night and day different as long as that effort is put in. But it’s easy to not put that in.

> I’ve noticed AAA studios do less custom c++

Yeah - and I do think this is sad. You can take your custom C++ libraries and bolt them onto unreal quite easily, and it’s not an awful amount of work to expose an Unreal friendly API to it. 13 years ago I was tasked with replacing physx in Unreal, I can’t see (m)any studios wanting to spend 6 months on that endeavour these days.

reply
And therein lies the rub. Unreal 5 is massive and complex, and there comes a point where it takes longer to understand how to layer on your own customizations than just to start from scratch. Especially for indie developers.

I wanted to make a little editor utility (the UE editor is built in UE) that changed the way viewport selection was handled. I think I got to 5 layers of abstraction before I gave up. 5 layers, for a left-click object select.

reply
I mean, it is and it isn’t. You picked hard mode, and Unreal’s abstractions are not always great - some things are abstracted to hell and back, others are literally hard coded and impossible to modify (hello CMC). But changing the character movement using CMC (or mover if you want), is very doable with a 30 minute YouTube video. It’s also going to be way, way less work than throwing everything out and starting from scratch. There’s always the option of implementing your own movement on the character instead of using Unreal’s.
reply
The whole point of using an off-the-shelf engine is to not spend time on such things though ;)
reply
Well no, it’s to not have to write asset import pipeline, renderer,UI toolkit, input handling, memory management, serialization, physics, ai, networking, streaming, etc etc.
reply
This 100x.

People like to complain about the time it takes to ship AAA games and how huge the budgets have gotten... and then complain that the UE5 games all look the same. You either use some amount of systems 'out of the box' or customize/rewrite everything and burn $$$.

reply
It's plainly ridiculous that tens of millions of dollars can flow into a game project without anyone in charge ever caring about questions like "does it feel good to walk around in?", "does it default to having a nauseating motion blur filter straight out of Overgrowth (2010)?", "does it run at 40 FPS with minimum graphical settings on a $2000 PC if I turn DLSS off?" or even just "is this fun? challenging? interesting in any other way?"

I open Microsoft Office on the web and the page reloads three times before showing me a list of files, then I open a document and it loads for 5 or 10 seconds, constantly reflowing, before eventually the entire page reloads again and eventually stabilizes, finally allowing me to browse and edit. After all of this, everything besides collaboration manages to function worse than what we had in Office 2003 two decades ago. This happened to all of software, not just Office. It happened to games, too. Delayed, over budget, underdelivered. No thanks.

reply
> It's plainly ridiculous that tens of millions of dollars can flow into a game project without anyone in charge ever caring about questions like

You ask fair questions, but they're clearly loaded. Games are like any other project, and the desired scope for games has gotten enormous. If you don’t like those games there’s more indie and AA titles being released these days than there were AAA titles 25 years ago. An awful lot of that is down to Unity and Unreal.

> does it feel good to walk around in?

This isn’t a priority for every game. A bunch of the most beloved games have absolutely awful movement mechanics. It’s very often a deliberate choice to _not_ make player movement feel like either Titanfall or TLOU (partially because it’s an incredible amount of work to do that). Some really good examples are Witcher 3, RDR2, shadow of the colossus, the entire fromsoft collection. (And notice none of those are Unreal!)

> does it default to having a nauseating motion blur filter

Motion blur is super divisive. Anecdotally what I’ve seen is that most people just don’t care and there’s a very vocal minority who disable it. We had telemetry on a previous game and the number of people who opted out was minuscule. We gave an option for on/off on first launch of the game. It helps when frame rates are teetering on the edge of our budget which is often why we enable it.

> does it run at 40 FPS with minimum graphical settings on a $2000

What games do you have in mind there?

> even just "is this fun? challenging? interesting in any other way?"

This isn’t fair. Any game I’ve worked on has had the majority of the team playing every week, and the gameplay and design teams playing more often than that. You may not like the game, and that’s fine, and some games might be more vanilla than your liking, but those games are wildly popular. Personally - I think the praise Nintendo get for a simple platformer (which has excellent controls, admittedly) is way overblown, and people are willing to overlook that they’ve been shipping the same game for 20 years and charging more than most AAA games during that time frame. I also think BOTW and TOTK are wildly overrated - they’re padded out, clunky, with some of the worst mechanics in games (weapon stamina) on undercooked hardware.

But that doesn’t mean that other people can’t enjoy them.

reply