I feel like this was a huge problem with many Unity games going back a decade at this point. So, to at least some extent, you have to ask yourself if part of the blame lies with Unity, for not making it harder to do the wrong thing, or (even) easier to do it right.
Yeah, most definitely. I do think that it has to do with poorly configured defaults that haven't been cleaned up. That, and Unity doesn't really have it's own interpolation system for FixedUpdate.
I do agree in regards to the Unreal Engine thing, I definitely do think that the problems with Unity at least are a bit more approachable to resolve without a low-level engine programmer on board. In comparison, implementing custom shading models in Unreal, official modding tools
(Whether down to limitations of the engine license, limitations with their UGC example code, or limitations with using Blueprints), or even implementing proper SteamInput or DualShock controller support
(While the Windows RawInput plugin does help a slight bit with the ladder, it still has a problem where the bindings are mixed up if you are using the controller over Bluetooth) is quite a task in comparison. But in regards to that kind of stuff, and Vert- FOV scaling still being the default in the engine
(Which affects a lot of Unreal Engine games at this point), I think a lot of that blame can lie with how Unreal hasn't had certain systems maintained while others have been prioritized. Fortnite
(and even games like Rime) are using major axis FOV scaling for games, and I do think it should be the default.
A project that I was working on, I decided to stop using Unreal, because it (and some of it's C++ documentation) currently isn't really in the state where I'd be comfortable shipping polished game in.
The MSAA part of that is particularly interesting to me. So the game actually uses the Unity's (old) forward renderer? Or is it forward+?
I generally feel like forward rendering with MSAA is underrated for anime-style games, so that wouldn't be a bad thing.
The game uses Unity's Universal Rendering Pipeline (Something which was introduced a few years ago), and the default Quality Settings assets that it uses does have 2X MSAA enabled by default with the higher settings. It's seemingly using that in conjunction with FXAA or SMAA in the camera settings (Depending on the in-game quality preset). From my time trying 200% resolution scaling alongside 8X MSAA and a 3.00 lodBias, it does make the game look really clean without much pop-in, but at a significant framerate cost. I do think that URP could definitely do with a Temporal Anti-Aliasing+Upscaling feature though, as upscaling without it can result in chunky pixels.
The game is indeed entirely forward shaded, unlike the couple previous games from Compile Heart that used Mizuchi+Orochi 4, which were using a deferred pipeline with the exception being character rendering. According to UnityExplorer (when investigating the URPQualityAsset data), it seems to be regular Forward shading. I do recall that there was a Forward+ path in URP as well.
Rune Factory 5 however is an example of a Unity game that uses the rendering system that Unity projects (without URP or HDRP) use by default. There's some things that apply to that original system that don't apply with URP (For example, you can freely adjust the shadow resolution in UnityEngine's QualitySettings, and without having to use Reflection to modify certain properties in the URP Quality Asset.
Two areas in this game that I've seen with weird GPU utilization and performance problems
(At least the former on the Steam Deck, and the ladder in general) would be the world map segment
(Where from what I noticed through RenderDoc, there was some elements that were suspiciously taking too long to draw) and the
Planeptune portion of the game where there's a large chunk of grass and tree-leave meshes being used without anything that controls the density
(outside of model LODs). On the Steam Deck, I'd definitely recommend playing with 75% resolution scaling, 2 shadow cascades, and with a system-side 40Hz refresh rate in place for the time being. Definitely would have been great if someone used Unity's performance profiler tools to narrow down what exactly is causing high GPU utilization in those portions.
But for some context on the grass meshes, they aren't using Unity's integrated terrain system. Similar to their previous games
(Examples being my results of importing models into Blender, and a YouTube video from the development of Death end re;Quest where the levels were being laid out in Maya), my assumption is that they're using meshes for the level layout, but without anything that controls the grass density. Toggling them off in UnityExplorer does seem to fix the framerate issues in that specific area of the game. But I personally find looking into untranslated development material (whether it's through Famitsu or otherwise) to be interesting.