UMG Widgets with C++ in Unreal Engine 5

แชร์
ฝัง
  • เผยแพร่เมื่อ 21 ก.ย. 2024
  • In episode 20 of the UE5 game development series, we'll add a HUD (heads up display) for the pawn using UMG (Unreal Motion Graphics). We'll add new health and power properties to the pawn that are displayed in the HUD using progress bars.
    Previous Videos - • Unreal Engine 5 Game D...
    Github Project - github.com/Liv...
    Twitter - / livelygeek
    Ben UI - benui.ca/
    Unreal UMG - docs.unrealeng...

ความคิดเห็น • 47

  • @gwava825
    @gwava825 2 ปีที่แล้ว +18

    Thank you so much for making these. You've helped me out like crazy and I'm sure a whole wave of future creators are gonna be blessed when stumbling upon your work.

  • @samyaza5752
    @samyaza5752 2 ปีที่แล้ว +3

    exactly what I was looking for this morning. recently watched a 10 hour video trying to learn the basics to C++. Now I am jumping around everywhere trying to figure out how to put the basics to use with UE5. Thanks!

  • @aghayejalebian7364
    @aghayejalebian7364 9 หลายเดือนก่อน +1

    Excellent video mate, it's really hard to find good Unreal C++ vids so this series is a godsend. 🙏

  • @TheFoyer13
    @TheFoyer13 ปีที่แล้ว +2

    This is exactly what I was looking for. Perfect for managing your widgets in c++ that designers created with UMG. I did it a little differently though as I used a base HUD class to create and manage the widgets. Just wanted to keep the HUD stuff out of my pawn class. (I thought your naming conventions were kind of confusing calling the Widget a HUD, even though it is, but it's not a HUD class, it's a widget class)

  • @slimnet04
    @slimnet04 2 ปีที่แล้ว +3

    man God bless you i spent 4 hours trying to do it in UE4

  • @felixmaldonadoos
    @felixmaldonadoos 2 หลายเดือนก่อน

    Still very helpful for UE5.3, thank you !

  • @VidimusWolf
    @VidimusWolf ปีที่แล้ว +1

    You are an incredibly, fantastically good at explaining things. Thanks!

  • @sergiomaresmartinez7665
    @sergiomaresmartinez7665 2 หลายเดือนก่อน

    thanks so much!! amazing video and I like a lot that it's with C++

  • @riotgnight1394
    @riotgnight1394 ปีที่แล้ว +1

    Thank you! This was a very concise and helpful tutorial to understanding how to link everything up!

  • @WasabiJar
    @WasabiJar 2 ปีที่แล้ว +1

    Great tutorial! I thought it was official UE guide while watching it

  • @PhillipsAlbright
    @PhillipsAlbright ปีที่แล้ว

    i didnt watch the rest of this series but this video on its own was really helpful

  • @nolppo
    @nolppo 2 ปีที่แล้ว

    I found your channel 2 days ago, It has a lot of educational content
    Thank you for sharing tutorials of unreal engine 5

  • @GarnetKane
    @GarnetKane 2 ปีที่แล้ว

    you are incredible. hardly ever comment on a video unless its deserved but man you saved me so much hassle - definitely subscribing to you!

  • @dimaworld2448
    @dimaworld2448 ปีที่แล้ว

    Thank you so much! unfortunately, the lessons in this genre (plane simulator) are so outdated that it is impossible to do anything for beginners, we are very much looking forward to the continuation of your lessons, all the best to you!

    • @lemon6521
      @lemon6521 ปีที่แล้ว

      I'm looking to follow along, could you explain the issues I'll have and why the tutorials are outdated?

    • @renisrrenis9225
      @renisrrenis9225 ปีที่แล้ว +1

      @@lemon6521 im using 5.2.1 unreal engine and it is not outdated.

  • @jjones503
    @jjones503 9 หลายเดือนก่อน

    Please come back. You work is amazing!

  • @DertyDub
    @DertyDub 2 ปีที่แล้ว +1

    Hey thank you for makeing this I’m use to unity and wanna learn unreal engine this will help me learn hank you sm

  • @mynti_fresh
    @mynti_fresh 2 ปีที่แล้ว +2

    Sorry, the quality and conciseness of your videos means I am now addicted and am thus forcing you to enact a Patreon such that these videos may continue despite your commitments elsewhere. If I cannot guilty you with addiction I shall guilt you with my life savings.

    • @LivelyGeekGames
      @LivelyGeekGames  2 ปีที่แล้ว +3

      Haha, thanks for the kind words! Sorry to disappoint you by not having a Patreon. I'm still committed to making more videos though!

  • @KavanBahrami
    @KavanBahrami 11 หลายเดือนก่อน

    Did you ever do the next video? I just found this one, thanks for taking the time to make it.

  • @maameloic7656
    @maameloic7656 ปีที่แล้ว +1

    why all the talented people stopped making unreal videos a year or two ago. did you stick to it and kept going?

  • @Thiago1337
    @Thiago1337 ปีที่แล้ว

    Very nice!

  • @miroslavzderic3192
    @miroslavzderic3192 2 ปีที่แล้ว

    You are awesome!

  • @alienrenders
    @alienrenders ปีที่แล้ว

    This as awesome! Thank you!!!
    edit: In UE5, there is no controller inside the BeginPlay() method. It only gets created after the actor is possessed. So GetController always fails for me.
    edit2: You can turn on auto-posses in the pawn. Not really what I want, but it works.

  • @jongofett2343
    @jongofett2343 ปีที่แล้ว +9

    are you still alive???

  • @jacklawrence2221
    @jacklawrence2221 3 หลายเดือนก่อน

    So by your mean,
    i have to define the child widgets(buttons,progressbar) in c++ base class in advance to access and modify them?😫

  • @HesiGrinds
    @HesiGrinds 2 ปีที่แล้ว

    Great video

  • @sameerkarjatkar1041
    @sameerkarjatkar1041 2 ปีที่แล้ว

    Hi ,
    Thks for making this Video . I want to develop a plugin for UE5 which will import assets into Unreal Engine . I am in the process of developing a UI for the plugin . I want to create a Settings dialog Box . Would you suggest to go with a UMG approach ? Also is it mandatory to have an actor for a plugin ?

  • @danir.1075
    @danir.1075 ปีที่แล้ว

    Hey this was super helpful. But what does FlyBot_API do in the class declaration?

  • @stars5173
    @stars5173 7 หลายเดือนก่อน

    Just followed this tutorial- it's great, but I'm getting problems with the HUD on clients, it just returns as null when I check it, so it never gets added to client screens- is there a solution?

  • @3darcdesign
    @3darcdesign 2 หลายเดือนก่อน

    what would be the best and cost efficient way to deploy UE on web via a private server?

  • @brycegeurts3345
    @brycegeurts3345 8 หลายเดือนก่อน

    been rippin stank farts

    • @Mittzys
      @Mittzys 7 หลายเดือนก่อน

      on god

  • @JJ-cf3vk
    @JJ-cf3vk 5 วันที่ผ่านมา

    It’s been 2 years…

  • @screenapple1660
    @screenapple1660 9 หลายเดือนก่อน

    how do you make Aimbot detection? people using AI to detect asset flip, refund the game, and without purchasing full game.....

  • @afrikaansedude2525
    @afrikaansedude2525 7 หลายเดือนก่อน

    Yhea bro where you at ?

  • @appleseedgames6934
    @appleseedgames6934 หลายเดือนก่อน

    I don't have a source folder

  • @ActionGamingLegends
    @ActionGamingLegends ปีที่แล้ว

    Can i do a client build for Android and a server windows build will it gonna work in Android

  • @nolppo
    @nolppo 2 ปีที่แล้ว

    🙏 If you create tutorials or a series of hyper casual games on UE5 for mobile
    I couldn't find any tutorials for this on TH-cam

    • @LivelyGeekGames
      @LivelyGeekGames  2 ปีที่แล้ว +1

      I've not done any mobile dev yet with Unreal, so it might be a while before I get around to that.

  • @NoBummer
    @NoBummer ปีที่แล้ว

    UH OH stinky!!! bbbbbbbbbbbbbbbbbrrrrrrrrraaaaaaaaaaaaaaaaapppppppp!!!! 😊😊😊😊😊😊

  • @marcapouli7805
    @marcapouli7805 5 หลายเดือนก่อน

    Too bad it is for multiplayer games...

  • @akatsukinin2108
    @akatsukinin2108 ปีที่แล้ว

    Thank you for making this video and providing the code. helping a lot