How does it fare against Unity? My understanding, from previous versions, is that Unity offered a lot more tooling than Unreal. Also, Unreal's SDK demanded a lot of C++ code, which can be unappealing for small studios compared to Unity's Mono and several possible (managed) language choices. However, Unreal appears to be much more capable, and better performing. Also, is Crytek still competitive? It used to be competi…
Unreal Engine 4 is now available to everyone for free
21–30 of 249 posts
Re: Unreal Engine 4 is now available to everyone for free
#22Earlier quoted context omitted.
It's free as in a bank loan with no time frame for repayment.
It's a positive development, not sure the negative comments. 5% is chump change if a game is successfull. The engine is also open source (so no hidden malware), runs on Linux and WebGL.
I think you mean the source code is available (i.e., anyone can download it), which is different from its coming with an open-source license, which is what most people mean by "open source".
Re: Unreal Engine 4 is now available to everyone for free
#23It appears they've backed off on the royalties, too: originally, it was 5% of gross[1], and now it's 5% of gross after $3000 sales per quarter.[2] 1 https://www.unrealengine.com/blog/welcome-to-unreal-engine-4 2 https://www.unrealengine.com/blog/ue4-is-free
Re: Unreal Engine 4 is now available to everyone for free
#24Earlier quoted context omitted.
It is free as in beer, which is the natural definition of "free" for most people.
It's free as beer until you take a sip from the glass. Also, the US isn't the land of the cheap sakes, which kind of doesn't fit "for most".
Re: Unreal Engine 4 is now available to everyone for free
#25It appears they've backed off on the royalties, too: originally, it was 5% of gross[1], and now it's 5% of gross after $3000 sales per quarter.[2] 1 https://www.unrealengine.com/blog/welcome-to-unreal-engine-4 2 https://www.unrealengine.com/blog/ue4-is-free
Re: Unreal Engine 4 is now available to everyone for free
#26The Unreal Engine is free neither as beer, or freedom. Its free as in a mob protection money is given freely , with a lot of strings attached. Overall a very smart strategy. Free Software Walled Gardens I highly believe will start to become a common thing in the software industry. As you get most the benefits of Free Software, without the normally feared industry risks.
It's free enough for most hobbyist game developers, many of whom will never make enough (or anything at all, really) from their games to matter. You want ideological purity? Go write your own system.
UE4 is a source-available, gratis game engine. This is fine. It is not open source, nor is it free or libre.
Re: Unreal Engine 4 is now available to everyone for free
#27How does it fare against Unity? My understanding, from previous versions, is that Unity offered a lot more tooling than Unreal. Also, Unreal's SDK demanded a lot of C++ code, which can be unappealing for small studios compared to Unity's Mono and several possible (managed) language choices. However, Unreal appears to be much more capable, and better performing. Also, is Crytek still competitive? It used to be competi…
Re: Unreal Engine 4 is now available to everyone for free
#28How does it fare against Unity? My understanding, from previous versions, is that Unity offered a lot more tooling than Unreal. Also, Unreal's SDK demanded a lot of C++ code, which can be unappealing for small studios compared to Unity's Mono and several possible (managed) language choices. However, Unreal appears to be much more capable, and better performing. Also, is Crytek still competitive? It used to be competi…
Regarding the editor, unreal is pretty amazing. It really shines in the tools department. Check out the landscape editor, materials editor, and animation tools on youtube. Pretty fantastic stuff.
The game engine itself is better than unity in almost every way with a few big exceptions:
1) multiplayer map size. unity can pretty easily support large online worlds 2) support for mobile/tablets. unity is the dominant platform on those devices. 3) community support. unity has a much larger community, better documentation, and a much more populous online store (though unreal is catching up)
Re: Unreal Engine 4 is now available to everyone for free
#29A demo of the astounding capabilities for those who haven't seen: https://www.youtube.com/watch?v=Y6PQ19BEE24
Re: Unreal Engine 4 is now available to everyone for free
#30How does it fare against Unity? My understanding, from previous versions, is that Unity offered a lot more tooling than Unreal. Also, Unreal's SDK demanded a lot of C++ code, which can be unappealing for small studios compared to Unity's Mono and several possible (managed) language choices. However, Unreal appears to be much more capable, and better performing. Also, is Crytek still competitive? It used to be competi…
Evaluation of software, be it library, framework, sdk or a whole engine+tools is much much harder than writing actual software, especially when royalties, copyright and other legal issues are involved.
In reality there is no way of knowing what would do your best, so you can look at specific bad parts and take that into decision making, for example, for what I've heard (and possibly it could be wrong):
- Unity is not really good when lots of people have to edit the same files, merging is not really good, and the server option does not really cut it. (For example Quake's engine .map text files are not so bad to merge in cvs/svn/p4/etc.)
- Unreal had always had the bad "fame" of 30-only fps game, while this is okay for certain shooters, or 3rd person games, it would've never worked for "Call of Duty" where the brand was simply established with 60fps. To some people this might sound a bit pedantic, but 60fps matters! (And >60fps does not really, unless you need to swap frames for a 3D VR device of sort)
That to be said both engines surely have really good parts. From little I've explored in Unity, what got me first was the ability to extend the editor while it's running - I could add menus with functionality while it was running - this is super cool.
Unreal on the other side is well known engine with lots of people from the AAA game industry familiar with it, and while the editor might seem completely foreign to people starting in the game industry, it's pretty well known by many others (I guess they don't advertise it much).
The hidden gem of Unreal for me, was it's internal UI system, which could be used as a separate project - it has docking, controls, etc. - it might be a good replacement for Qt, MFC, wxWidgets, etc.