Blueprints or C++

Blueprints are a graphical version of code. The nodes there represent functions that are made in c++. You can make new ones with your own c++ code. So that’s one of the big differences.

You can make many things, maybe even a complete game only with blueprints, but at some points, you will find out, that something doesnt exist or work with Blueprints only and you need to write something in code, because you can do much more with c++.
Even more than you would need to. If you want to start with c++, you can watch the Youtube Tutorials from Epic Games on c++. I guess you need a basic understanding of coding. I would recommend to learn the easiest things first if you can’t code at all. There must be c++ tutorials in general on Youtube to start with and switch to Unreal later.

Some people also say, that Blueprints are slower than c++, but this only accures in really big projects. And if you come to a point where this happens, you can still switch to c++ because they work together.

I think the best thing is to use both. Write function in c++ and make them BlueprintCallable is one of the greatest features. (:

Currently i use blueprint because i have no knowledge of c++ but i am not sure if there are and disadvantages to using blueprint instead of C++

If its a lot better to use C++ where is a good place to start learning?

Thanks for the help!

Hey -

While C++ does preform slightly better than blueprints in large, extensive projects they (blueprints) are still a very powerful tool that can make understanding the code much easier. If you would like to learn C++ for UE4 there are tutorial videos (Introduction to Programming | Live Training | Unreal Engine - YouTube) as well as wiki pages (A new, community-hosted Unreal Engine Wiki - Announcements - Epic Developer Community Forums) that describe how to create a project with code that you can follow along with.

Cheers

Thanks, i think i will try and get the hang of blueprint before i attempt any c++