Blueprints Vs C++ Which One Should You Use In Unreal Engine 5

Sdílet
Vložit
  • čas přidán 19. 08. 2024
  • 👉Get Access To All My Unreal Engine Courses At : www.unreal-uni...
    👉Get My Free Unreal Engine Beginner Course : bit.ly/46mUWMr
    👉Blog : www.unreal-uni...

Komentáře • 85

  • @strange1702
    @strange1702 Před 2 měsíci +20

    Blueprints Vs C++ ❌
    Blueprints and C++ ✅
    Both are very important. lets say you want to make flickering light actor, you make c++ actor write the code so you get flickering light and flickering with x frequency. Now make a blueprint class derived from this actor, expose variables to blueprint, and now you can customize this flickering light without having to compile c++ code every single time.
    also when you do animations its better to use blueprints, you use c++ when you want to implement some kind of logic, like movement....

  • @gail_blue
    @gail_blue Před 3 měsíci +39

    The real difference is that Blueprints are hooked into the "world" editor, they know everything in that context. C++ is used to create that world(context), but doesn't know the current state of it, so you end up using BP for loading data into C++.
    C++ is suited for doing things like forloops, if-statements, and other structured tasks. A tangled mess of a Blueprint can often be converted in a dozen or so lines of C++ code that's much easier to understand.
    Blueprints are best suited for tweaking things like animations and character controls. The easiest way to get into C++ is to start but converting something simple you've done in BP over to C++, that way you know what functions to look for in C++.
    The hardest thing about C++ is getting the IDE setup (visual studio). It can be intimidating at first, but start with simple small steps, and you'll be fine.

    • @bigjaws488
      @bigjaws488 Před 3 měsíci +1

      Can we use both for a project. Like I divide the project making most of my mechanics, animations in bp, then I create another project where I work with C++ after that can i import that c++ project to my bp project?

    • @zzjerozz123
      @zzjerozz123 Před 3 měsíci +2

      @@bigjaws488 You can use both in the same project, start a c++ or convert a blueprint one into c++, both options are always available.

    • @jackwayne1626
      @jackwayne1626 Před 2 měsíci

      I would also add that C++ doesn't like invalid code, so you can expect wayy more crashes in the debug process. (Instead of a warning list)

    • @phantomak3r477
      @phantomak3r477 Před 2 měsíci

      Thanks for the insightful comment. I have JS and TS experience, I would like to create an animated film using UE5. Do I need to learn C++ or is it not a requirement.

    • @gail_blue
      @gail_blue Před 2 měsíci

      @@phantomak3r477 No, you only really to know C++ for certain types of games and simulations.

  • @camiloperez2934
    @camiloperez2934 Před 3 měsíci +45

    I know c++ but i don't know how use it in unreal engine 5 😅

    • @gail_blue
      @gail_blue Před 3 měsíci

      Just get used to googling "ue5 C++" plus whatever Blueprint command you're trying to replicate. Ryan Laley has a good beginner series. Then take a look at "Code like me" to learn the work flow.

    • @worbarry9735
      @worbarry9735 Před 3 měsíci +7

      i don't know c++ but its all i use in unreal lol

    • @lyk80586
      @lyk80586 Před 3 měsíci

      learn the Unreal class, actor and components and API

    • @camiloperez2934
      @camiloperez2934 Před 3 měsíci

      @@lyk80586 you have any playlist? Please

    • @goofygrass
      @goofygrass Před 2 měsíci

      Same...I spent time learning c++ but opening the character class in cpp makes my head hurt.

  • @shinyyordle9233
    @shinyyordle9233 Před 3 měsíci +2

    I'm just starting in all this things and I want to be a sole dev as of now for lack of funds.
    The best use I can give to both of them are, BPs as a concept to visualize the ideas in one project, while C++ being used for the refined product and for a more manageable evolution of it.
    I see it as illustration, from sketch to concept to the final product. Maybe I'm wrong but I guess it could work. Also it helps to make progress on a project while finishing the studies.

  • @biz-man
    @biz-man Před 3 měsíci +3

    BP for big things like story and game events(But also for UI)
    C++ when it needs to compute fast or operates on a deeper level

  • @FatikDev
    @FatikDev Před 3 měsíci +5

    You can build an entire high quality game only using blueprint like Bright memory infinite and cho cho Charles

  • @bexplosion
    @bexplosion Před 3 měsíci +3

    There is a third option: Angelscript. Simple as C and without pointers and silly header files. Also scripts reload instantly and are much faster than Blueprints, close to C++. Doesn't support Interface, but workaround is components and event system.

    • @user-zy4yh8iw1f
      @user-zy4yh8iw1f Před 3 měsíci

      What exactly is it?

    • @bexplosion
      @bexplosion Před 3 měsíci

      @@user-zy4yh8iw1f UnrealEngine-Angelscript is a set of engine modifications and a plugin for UE5 that integrates a full-featured scripting language

  • @chelfyn
    @chelfyn Před 18 dny

    As a solo dev, coming from a 3D animation background who's coding skills are as ancient as the pyramids (Commodore basic + 6502 assembly FTW), It's blueprints all the way baby. I've spent years using nodes for textures and compositing, so it just feels natural. I'm sure there's things I can't do without real coding, but I'm happy to work within the limitations (and I use templates all the time) so I can concentrate on the stuff I actually enjoy, world-building, SFX, animation etc.

  • @antonds
    @antonds Před 3 měsíci +6

    Both.

  • @init1mk
    @init1mk Před 3 měsíci

    Happy to have you on yt keep going my man ❤💪🏻🍻

  • @dr99tm23
    @dr99tm23 Před 3 měsíci

    You have to use blueprint even when you know c++,
    i think c++ would be easier and faster (a lot faster) to implement complex math functions as blueprintFunctionLibrary c++ to use it in blueprint
    another thing when i obligated to use c++ is when i want to make custom actor that do something when i delete it in the editor i have to do it in c++
    Another cool feature of doing things in c++ is that your proprietary logic is converted to dll files so when you want to give this file to someone to test it or use it, he will never know how you implement it 🙃 (you can keep the source code if you want)
    delay in editor require c++ to prevent the editor from freezing while doing long tasks or calculations (delay node not work in editor)
    You can also do multithreading, running blueprint task in background thread, custom nodes in blueprint, custom node in material editors, custom assest, and many other things.

  • @youngminkim923
    @youngminkim923 Před 3 měsíci +2

    Answer is both

  • @swrcPATCH
    @swrcPATCH Před 3 měsíci +1

    What about no delegates in BP as parameter? Or anything related to source control (i know it is possible, but oh dear...)

  • @Redmoon074
    @Redmoon074 Před 17 dny

    Can you use both at the same time? Eg do most in blueprint but maybe try to increase performance in c++?

  • @breadiusloafus5068
    @breadiusloafus5068 Před 3 měsíci +1

    I use C++ at work, but when it comes to Unreal Engine, i use both blueprints and c++.

  • @D_To_The_J
    @D_To_The_J Před 3 měsíci

    From my experience, Use C++ for complex functions and performance then call and hook up those functions in blueprints.

  • @pushthebutton4602
    @pushthebutton4602 Před 3 měsíci +1

    If you are used to write in C# in Unity, will that help in Unreal or is it totally waste?

    • @Niberspace
      @Niberspace Před měsícem +1

      anything you do in Unity is always total waste

    • @MasterDower_
      @MasterDower_ Před měsícem +3

      @@Niberspace Facts

    • @noelkelly4354
      @noelkelly4354 Před 8 dny

      Yes, in that it show you're up to the concepts involved. But it's a different language with a different libraries of nodes. Yet Another API.

  • @uscaptain7979
    @uscaptain7979 Před 3 měsíci +1

    i think some of the things you mentioned are sort of true but dont really matter

  • @mondobloque
    @mondobloque Před 3 měsíci +1

    I’m not a coder so I learnt Blueprints quite fast, but at some point I wanted to integrate a physics acceleration formula and it was varely usable in BP, so I spent 2 weeks with Chatgpt bruteforcing an implementation in C++, I created a node that can calculate +1000 actors position at run time while Blueprint was sluggish with only 10. Blueprints are definetively one of the best node-based implementations on the market today, but if you need to do calculations at runtime there is this great video that shows the performance comparison:
    m.czcams.com/video/V707r4bkJOY/video.html&pp=ygUQYmx1ZXByaW50IHZzIGMrKw%3D%3D

  • @dreamingacacia
    @dreamingacacia Před 3 měsíci +1

    If you're a solo just stick with blueprints. Small teams without proper programmer might just stick with blueprints. We shouldn't waste time to get that 1% performance and use time to create more good stuffs.

    • @richoffks
      @richoffks Před 8 dny

      Bro just crushed my dreams of using c++ 😢

    • @dreamingacacia
      @dreamingacacia Před 8 dny

      @@richoffks do you want to make games or do you want to use c++ to make a game ?

    • @richoffks
      @richoffks Před dnem

      @@dreamingacacia well like I’m trying to do super complex stuff like genetics and generations

    • @dreamingacacia
      @dreamingacacia Před 15 hodinami

      @@richoffks if you're making games, genetics and generations in the biology field could be simplified to a few variables. Just ask yourself if you want to make games or try to push the simulation front.
      There are many of us whom want to make games but some idiots gooning people to think they should use c++ because of performance issues, when in fact there won't be any performance issues if you're talking about small or medium games or even low-end large games in case people are skilled enough.
      If you're a solo and want to make a game, why bother with c++? You want to make games as a solo, just do whatever it takes to make games.
      I'm sure my target audience is clear.

  • @YoutubeAccountMan
    @YoutubeAccountMan Před 3 měsíci

    BP where possible, C++ where required. UE5 is designed for BP so you should use it literally every chance you get.

  • @nayler2010
    @nayler2010 Před 3 měsíci

    Blueprints have been hard enough to learn c++ seems like it would take forever to learn the basics 😅

  • @robertpatrick6255
    @robertpatrick6255 Před 3 měsíci

    What is the release date of bobo’s playzone

    • @UnrealUniversity
      @UnrealUniversity  Před 3 měsíci

      no release date yet but development finished just bug testing then sorting out a date

  • @MrBorderdown
    @MrBorderdown Před 2 měsíci +2

    Why would you bother speaking on this subject when you don't know c++?

    • @UnrealUniversity
      @UnrealUniversity  Před 2 měsíci

      I explain that in the video, and wanted to share what I did know

  • @KollossoBR
    @KollossoBR Před 3 měsíci

    Is BP as we know it today on borrowed time? Tim said that UE6 is UE5+Verse, they surely won't abandon C++, but what about BP? Will they be left behind? Keeping C++, Verse, and BP might be too much, although there are rumors that Verse will have a Visual Script, so it might just be a 'mere' replacement.

  • @ParottaStudios
    @ParottaStudios Před 3 měsíci

    Hey man, I tried downloading UE5 on my laptop but it doesn't load properly due to low vram of my integrated gpu.
    Should I download UE4 since it has much lower requirements than UE5 and also has blueprints??

    • @javideas
      @javideas Před 3 měsíci

      Then yes

    • @alphamineron
      @alphamineron Před 3 měsíci

      Throw the integrated GPU. It’s not worth it… get a better PC then come back

    • @leopereira4718
      @leopereira4718 Před 3 měsíci

      You’re gonna struggle to make anything substantial in UE5 with an integrated GPU. IE4 is an option, but you can also look into Unity. Visual Scripting is very similar to blueprints in a lot of ways.

  • @hideShort
    @hideShort Před měsícem

    how you know BP if you doont know c++ i think bp have the same logic right? i think bp its more difficult than coding xd

    • @chelfyn
      @chelfyn Před 18 dny

      If you come from a coding background, sure. I come from a 3D background, so nodes are second nature

  • @alphamineron
    @alphamineron Před 3 měsíci +4

    Problem is, people don’t realize that BPs are PROGRAMMING… it’s coding but with all the worst aspects of programming. It’s a fallacy within non-coders that BPs are easier because it is VISUAL. It’s in fact not, once you actually learn to code you’d realize that C++ is far more readable, testable and efficient than dragging and dropping ugly blocks, finding buttons and text in menus instead of simply writing code.
    BPs are great for creative sections where you need visual output and input like materials or animations.

    • @computernerd8157
      @computernerd8157 Před 3 měsíci +1

      I used a program like blue prints for Java in a IDE called BlueJ. Drag and drop coding was meant to teach students logic and basic data structers. I agree 100% it is false to say its not coding.

    • @TiiAye
      @TiiAye Před 2 měsíci +2

      block are wayyy prettier than walls of text lol

    • @alphamineron
      @alphamineron Před 2 měsíci

      @@TiiAye Go watch a nature documentary if you wanna look at pretty things

    • @TiiAye
      @TiiAye Před 2 měsíci

      @@alphamineron How about I program one where you get eaten alive. Survival of the Prettiest

    • @chelfyn
      @chelfyn Před 18 dny

      I've spent 30 years learning/working in 3D animation. I have zero interest in learning to code. It IS easier, because I don't WANT TO LEARN C++ I want to build worlds. I think you really need to have a close look at the axiom "To a man with a hammer, every problem is a nail".

  • @HyraxGames
    @HyraxGames Před 3 měsíci

    Maan, i should make one of these videos! Like it's almost free attention!

  • @swipsi6858
    @swipsi6858 Před 3 měsíci +3

    the video is pretty bad and shouldve stopped when yóu said you have virtually no cpp experience.

    • @renisrrenis9225
      @renisrrenis9225 Před 3 měsíci

      too real

    • @UnrealUniversity
      @UnrealUniversity  Před 3 měsíci

      Sorry to here that could you clarify more I may have little experience although wanted to be clear about that and share what I did know

    • @chelfyn
      @chelfyn Před 18 dny +1

      @@UnrealUniversity Getting a bit sick of the holier than thou attitude of some of the coders here.

  • @amrabdala56
    @amrabdala56 Před 3 měsíci

    The best

  • @renisrrenis9225
    @renisrrenis9225 Před 3 měsíci

    C++. No code in blueprints at all, the better. Blueprints were made for people whom c++ is too hard but want to create games in unreal engine.

    • @silentscopez1364
      @silentscopez1364 Před 2 měsíci

      How much c++ did you learn before starting

    • @chelfyn
      @chelfyn Před 18 dny

      Fair point. I'm one of those people, but it's not just that it too hard, it's fucking boring for an artist/animator. We do not want to do that shit.

    • @renisrrenis9225
      @renisrrenis9225 Před 18 dny

      @@chelfyn well yes for non-programmer blueprints is the only way. But for programmers c++ is best option in every way. Since blueprints doesnt have some things that only in c++ you can do. Or is just way simpler to do something and more efficient/performant.

    • @renisrrenis9225
      @renisrrenis9225 Před 18 dny

      @@silentscopez1364 about a 1-2 year+- but then went to college learning useless website stuff and other insane amount of useless things. So after 2-3 years of sad break from c++, i started using unreal engine with only c++. Though plain c++ and unreal engine c++ differs, unreal engine c++ is simpler to use.

  • @cpubug
    @cpubug Před 3 měsíci

    Third option use Godot Engine🤣

    • @renisrrenis9225
      @renisrrenis9225 Před 3 měsíci

      unreal engine has no competitors.

    • @cpubug
      @cpubug Před 3 měsíci

      @@renisrrenis9225 haha 100% true though