Skip to content

Instantly share code, notes, and snippets.

@flibitijibibo
Last active September 19, 2023 09:58
Show Gist options
  • Star 91 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save flibitijibibo/035087d8736441786b10e8c3879d50dd to your computer and use it in GitHub Desktop.
Save flibitijibibo/035087d8736441786b10e8c3879d50dd to your computer and use it in GitHub Desktop.

Casey asked this on Twitter...

Having looked at UE5's promotional content, I'm honestly just wondering: what is the point of Unity, now? Either you don't want to deal with a big unwieldy engine, in which case you roll/mod your own, or you do, and you would just use UE5, right? What am I missing?

It seems like it is so far ahead of Unity at this point on all fronts, including asset provision (megascans + metahuman), I'm honestly just not sure what Unity's value proposition would be. Maybe devs who are sticking with Unity could fill me in?

A lot of interesting responses came from developers, mainly people working on games, which of course makes sense. But, it may be interesting to look at it from the angle of someone who's less focused on the art and more on the software, specifically from a maintainer's point of view. I've worked with a number of Unity games and (admittedly) I've occasionally poked at some Unreal games. More recently I've been working with UE5's Linux editor support as part of work on SDL. (TL;DR: I'm kind of stunned at what I've been able to do with it from day one.)

I lazily call myself a game developer, but in reality I focus on ports and long-term maintenance, not much else - if you want a Linux version, or you want a game cleaned up after 10 years of bit-rot, I'm your guy. I've been doing this for some time now!

Anyway, what makes Unity appealing comes down to the typical Unity project lifecycle, one that I've seen consistently across many games, sizes of studios, etc: The beginning of the project is always really nice! You already know this, because literally everybody using Unity will tell you the same thing: It's great for prototyping. It's a great way to get people hooked, as long as the rest of the lifecycle is at least decent. Hell, people still put up with all of XNA's numerous failures to this very day because they can at least bend it to fit their needs from start to finish.

This was the case with Unity for a long time, but in the last few years the quality of that back half of development has rapidly declined, to the point where people are absolutely sick of their own projects by the time they're finished... or more accurately, abandoned, because long-term maintenance of Unity games is appallingly hard. Developers of all kinds like to accumulate technical debt and then panickingly try to pay it off at the 11th hour, and to say Unity charges interest is a pretty gross understatement. Others have talked about this at length so I won't get into it too much, other than that profiling and improving performance is still really really hard and I wish it was easier for outsiders like me to find out why.

I would attribute most of Unity's reputation to the fact that people are absolutely sick of that back half, and are willing to jump ship even if it means having to re-train an entire team to do so. As impressive as UE5 is, I don't think the technology has to do with its appeal as much as the long-term user experience. My guess is that even if UE5 doesn't actually make finishing games easier, Unity's going to get smoked this next generation solely based on the promise (not even guarantee) that shipping will not make you want to die constantly.

As a maintainer? I already know Unreal's going to be better because it allows maintainers to do something that we physically cannot do with Unity, and probably never will: Contribute to the engine itself. Not in terms of features, but in terms of fixes - 99% of what makes finishing a Unity game hard is that there's this huge wall between the developer and the engine, which might have been fine when that wall wasn't blocking off tens of millions of lines of code. Developers aren't dumb; they can literally see the bug right in front of their face, and they do not care whatsoever that it's in someone else's code, they just want to fix it and get on with their lives.

As an example, I spent about 2 years staring at a blatant Vulkan bug that was publicly acknowledged (it would slowly delay presentation indefinitely causing multiple whole seconds of input lag (yes, seriously)), and I diagnosed it on my own end rather quickly, but I got the final fix for it 2 months ago. While I'm grateful that the internal team found it, fixed it, and even backported it, why couldn't I do that myself, with my own build and my own QA lab, even if only to help validate it for inclusion in a future release? Why am I forcing other developers to endure this pressure when they've already got enough unsolved problems to deal with?

This disconnect is a two-tiered failure:

  1. Hypothetically, for any proprietary software, you could just contact an engineer and work out the bug between the two of you, and get the fix you need as soon as it's ready. This is what made RAD's stuff so appealing despite being super closed up, because even a nobody like me could file a report for Bink and expect a serious reply very quickly. Unity doesn't have that luxury because it's a huge monolithic beast that you can't just casually patch up and send off a new binary, it's all or nothing.
  2. Without having an internal engineer on speed-dial, what can you do? It's not like game developers don't have engineers of their own, but their talents (expensive talents, I might add) go unused because It's Not Theirs to fix, even if it would make the product's experience better at no cost to the vendor!

Unreal does a really good job of addressing both of these concerns, even for independent studios: Third-party engineers have the freedom to debug and diagnose their own issues, fix them, and submit them to upstream for review, all while retaining basically the same level of IP protection that was there before. Look, I may be a FOSS nut that likes fully Free software, but it'd be irresponsible not to acknowledge, from both ends of the licensing spectrum, that there's a lot about the relationship between commercial software vendors and their licensees that goes largely unexplored, and Unreal is an excellent example of this. It would have been absolutely unheard of for someone like me to not only have Unreal's source, but also work directly with the upstream maintainers - being able to work with highly experienced, AAA-level engineers like Mike Sartain and Brandon Schaefer, as a collaboration between Unreal and SDL, is something that I could never dream of with Unity, and that's factoring in that they use SDL as well! Talk about lost opportunities!

Do I think most UE5 licensees will be doing this? Probably not at first, but as time goes on and developers dig really deep and discover all the weird things that even Fortnite didn't find, that maintainability is going to make a world of a difference, especially for developers like myself who have to focus on getting the game running in a lot of places, and running for a very long time.


UPDATE (April 18, 2022): I'm honestly shocked that so many people have read this, and that nobody has chucked rotten eggs at my house... so thanks to everyone who has read this and liked it, I really didn't think it would resonate all that much!

But, since this was thrown together and published, a consequence I should have expected was the divisiveness regarding each engine, what makes them different, and the constraints that come with each product... so, in addition to apologizing for lack of clarity here, I should, well, clarify:

I really really want every engine to be good. I almost never make the choice on what engine gets used, I don't even push FNA that hard myself - at the end of the day I just work within the constraints that others enforce, and as a result it's in my best interest that no single engine be more difficult to maintain long-term than any other, because it lets me make the best Linux games possible without having to be picky about it. Being "good" doesn't mean having All the Features, or using the correct language, or not having Bug X/Y/Z. All I (and many others, apparently) really want to be able to do is help, and the main point of the above post was that Unreal is currently the only mainstream engine that lets me do that. There are of course numerous FOSS game development tools, primarily Godot, and there are smaller things like my own FNA project as well.

The point I want to push more than anything else is that I want proprietary vendors to have an open mind about sharing the core with developers so that we can achieve our common goal of making not just really good games, but really good software too. That means trying out new ideas in the area of how the source code is managed (this includes the commit logs, btw). This isn't limited to engines either; I could make a drinking game out of how often I've wanted the runtime source for FMOD and Wwise, for example.

This can and should be a lengthy process since doing things right the first time matters a great deal. As both an example and as a commendation to one team that I've interacted with within the last year: The team behind GameMaker has been putting in a lot of effort toward being a part of FOSS communities, including the SDL and FNA projects, to refresh their (very very old) code and work towards modernizing it without sacrificing what people love about that engine. My hope is that over time, as those relationships grow and the benefits of those relationships become more apparent, GameMaker will one day be able to open things up more internally, so that more and more of their products can enjoy the same processes that their dependencies have.

Whether you're Unity, GameMaker, or whoever: I hope this is something your teams think about for some time, because we're all rooting for you no matter how fussy we get sometimes!

@flibitijibibo
Copy link
Author

flibitijibibo commented Apr 18, 2022

Hey everyone!

Just as a heads up, I wasn't expecting anyone other than Casey and maybe a few of his readers to see this, and apparently it's trended like... 3 separate times this weekend. Not a huge worry, I'm really glad this resonated with people. Means I haven't lost my damned mind yet(?)

But, something I'm discovering is that there's no moderation tools for Gist at all. Basically all I can do is delete and edit(???) other posts, which is kind of weird because the main GitHub site definitely has locking. So, mild compromise: The Wayback Machine is already archiving this, and once it rolls back and gets the comment right above this one I'll go ahead and delete everything here and replace it with a link to the archive, since it wouldn't be fair to just delete everything when the above authors went to the effort of writing all this down. From there everything below this will get trimmed, both to keep it simple and to passive-aggressively punish anyone who didn't read everything above :P

EDIT: Archive is now here!

If you're a GitHub employee seeing this, please add locking to Gist. If you're an Epic/Unity/etc employee and want more feedback from me, my e-mail is here. Everyone else should look to wherever your link came from, since I'm sure it has a comment section there that, unlike here, actually has some kind of moderation system.

Thanks for reading!

@cvega
Copy link

cvega commented Apr 18, 2022

@flibitijibibo

GitHub employee here. I don't work in product but I tend to follow news when it comes to unreal and unity and would consider myself an avid gamer. I fool around with game engines often but don't consider myself a game developer. I would recommend using https://docs.github.com/en/discussions if possible. In the meantime I've taken your feedback and filed a feedback discussion on your behalf. I can't promise it will gain traction but wanted to let you know that we did see it.

community/community#15140

It's also worth pointing out, and you may already know, gists are repo like and can be managed via git. Thanks again for the feedback and hope you don't mind if I follow you for future discussions.

❤️ :octocat: 🚀

@flibitijibibo
Copy link
Author

Works for me, thanks for the help!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment