Unity => Unreal, Clunky?

So due to “recent events” over at Unity I have (reluctantly) been looking into Unreal and am now doing the Unreal course just to get to grips with the basics.

And Unreal feels kinda clunky, compared to Unity.
Now granted I am only 8% in , so my opinion could change based on how things progress.

But it feels less open and asset management is a bit of a hassle… blue prints are kinda okay, but prefer scripting and hope that C++ won’t be that more of a hassle compared to C#.

Ah well I am just wondering what other fellow Unity devs think , or any tips/suggestions to make moving away from Unity less of a hassle.

I only have made 1 game in Unity (King of Crokinole) and will keep that on Unity (working on an update) , but feel uncomfortable with current unity leadership and the bad choices they have made (the changes themselves don’t affect me, as my game costs more money than it ever will bring in probably)

who’s gonna tell him?

Jokes aside though, I’d personally stay away from C++ if you find C# hard, for one reason and one reason only:

  • Pointers and Memory Allocation

Unlike C#, C++ is a LOW-LEVEL language, and it can be quite hard to get your head around it, especially if you’re struggling with C#. Don’t mean to scare you, but it’s real

1 Like

I’ve developed commercial apps in Unity - VR stuff. From what I can tell you now having used Unreal over the last 6 years is the following:

  1. Blueprints are prefabs on steroids - they take a while to get used to them but they are so much more powerful. I’m not talking the BP code but just blueprints in general. As it happens I love BP as code too and some tasks are so much easier using this like adding debug, input events and so on.
  2. C++ is tricky and you do have to watch out for things like null pointers but UE C++ is not as bad as linux/windows C++ for general use. It has a garbage collection system for anything based off UObjects so it is most objects in UE.
  3. Materials…nothing like that in Unity. They are so powerful
  4. Niagara - the particle effects engine (which btw is not covered and I now know why - I have started a course with 35 hours of video on particle effects alone - this is how powerful and comprehensive it is)
  5. Animations - The blending between animations, animation blueprints (not really blueprint) and other stuff like Decision trees for AI - that’s again a whole other course. Shooter touches on all this.

The list goes on.

Your concerns regarding C++. They are warranted but the reason I love UE is because of C++. It’s more complex and you do have to be careful but it is also SO much more powerful. I have worked with C# since it was launched as a beta in 2001 and it is a decent language but it’s SOOOO boring. C++ makes you work for it just enough to make it feel so much more rewarding.

I could probably write another 10 pages or so on why UE over Unity. Unity is decent, don’t get me wrong, and for 2D, you have Unity or Godot. For 3D IMO, there’s only one choice and it ain’t Unity.

The biggest drawback of UE over Unity is the docs are shockingly bad. They used to be good but not so much any more.

That’s my 2p/c worth on the 2. I would argue, use what you are comfortable with and the best tool for the job. For me that is Unreal for 3D work, 2D would be probably Unity.

Hope this helps.

2 Likes

Not worried about it being hard… just hope that some skills transfer over and not having to start from scratch again

2 Likes

To a point.
e.g., when you create a script to add to a unity prefab or component, it is a MonoBehaviour. In Unreal, it is an ActorComponent and you attach these to the BP in the same way you attach MonoBehavior scripts to objects in Unity. Same idea, different names.

Game design is the same sort of. Tracking scores etc, you’d tend to use a singleton in Unity. For Unreal, you can add logic to the Game Instance. I’ve seen it also being done using the game save which I’m not a fan of TBH (Not the game save stuff because that is really good, tracking via saves)

Anyway, I hope this all helps and you can always ask in the forums. I have experience with both so I should be able to help out.

Privacy & Terms