I spent two days on researching about how casting in Unreal works and this is by far the only video who explains it on a holistic approach. German excellence. :) Thank you for the video.
Es ist wirklich beeindruckend wie gefühlt ganz TH-cam bislang daran scheiterte das mal sinnvoll zu erklären und man es unnötig schmerzhaft selbst lernen musste. Danke für das Video^^
Ich versteh's halt auch nicht, warum jeder denkt ein "Cast To Third Person Character" wird schon genügen... Hatte auch den gleichen Frust mit Blueprint Interfaces. Hab dazu jetzt auch ein Video oben, falls du da mal Probleme haben solltest. Cheers!
But you forgot to mention that you had to Pick the specific Jboy Actor inside the editor, or am i wrong? I mean, if you just create the actor reference variable inside of the blueprint, the cast still wont know which exact blueprint you're talking about. You can see in the details panel what I am trying to say - at 3:35 after selecting your BP_JBoy, under "Default", there is the dropdown menu for your public actor reference variable and you had to put in "BP_Jboy2", or else it would say "none" and the cast would fail. Just trying to understand, here - im not criticising
@@RMC_yeah, dont worry - blueprint communication IS really confusing in fact. If you're trying to do replicate this tutorial, just know, that he forgot to show one step. He needs to set those variables that he exposed, inside the viewport. If you're trying to get a grip of BP Communication in general, heres a tip; it really helped me to watch those learning streams vom Unreal Engine by Zach Parrish. Search for the Topic "Blueprint Communication" and also try to understand "Blueprint Hierarchy", that helped me a lot as well
I understand now. Thank you! For anyone who still got stuck, make sure to use the picker tool on the variable and pick the blueprint that youre casting to.
Man thank you! Someone finally answered my question in a way that is more complete. most of the video about casting is just to cast the player character to object without out explaining it
That stupid Object pin was driving me nuts. Now I know what to plug into it. If you cast to Class (i.e. the purple blueprint node) then you're in another world of pain. I still don't understand what that's even for.
Wow, the object pin was exactly my problem. I'm super new to Unreal and thought it would take forever to find the answer and this was the first video. Thanks!!
This is why programming helps. The cast node does not know what to cast to so it needs a instance of an object. Obivously, i mean you have to determine what instance should be casted to what type of class. It is not too crazy tbh. In programming language it is exactly the same.
Help!! Still doesn't work (cast fails) because you set the value of them to the blueprint class without telling us how. At 2:53 you mention you made it editable so then you can edit it in the viewport, but I am doing this in the gamemode class so changing the value in the viewport is not possible. In the details pane it's labeled 'none', and I CANNOT change this value whatsoever. Like how do I connect it in the details pane???
this is super helpful but im still unsure how to do this with a widget? when exposing the varaiables at 2:50 I can't then edit them in the Outliner/Details window since they're not in the scene :(
Yes! This is perfect great work. I had so much trouble with this too and you're right everyone just says get third person character. What a cop out, they never explained why. I bet even they didn't know tbh
i am trying to get a health variable from an actor so I can make a heath bar above to AI I needed to cast to my Actor So I could get the variable but after using an object reference it lets me get the variable but doesn't show the percentage correct. can anyone please help me.
LMAAAAAAAAO, you named the exact reason why i ended up here. I KNOW I CAN CAST TO A THIRD PERSON CHARACTER! haha but not im staring at the blank void ripping slowly into the heart of my existence called "object"
Hey! Auch wenn das Video schon etwas älter ist: Wenn ich eine Funktion habe, die z.B. ein ItemSet benötigt, kann ich dann auch einfach nur eine Variable erstellen, die den Typ des ItemSets hat? Ohne dafür eine Referenz zu benötigen? Also angenommen: EquipItemSet ist eine Funktion und als Input benötigt sie das ItemSet. ItemSet ist eine File, die bassierend auf einer C++ Klasse erstellt wurde (ItemSet) z.B. Test_ItemSet.uasset (ist ein ItemSet) Würde ich dann einfach eine Variable erstellen, die: Test_ItemSet.uasset als Variable Type hat? Oder muss ich noch eine Objektreferenz dafür erstellen? (Irgendwie über die Asset Registry oder so) Weil die Variable an sich, ist ja "leer"?
Excellent video really helps understanding the fundamentals...I am still stuck though I'm trying to reference a widget BP inside of a component BP but I cant find an object that works, "UserWidget" object doesnt work?
When you create the widget, save the reference as a variable - for instance creat the widget in the game mode and then promote it to a variable. Then get the game mode. Then cast to the game mode. Then access the widget variable.
So I’m made ammo current ammo and a box that’s attached to a blueprint but when I cast the box to my rifle nothing happens I hope this is helpful but if your open to helping let me know
thanks, i understand now but now my cast still just fails, im trying to read a value from a child bp but casting to the parent and doin this trick fails the cast
If you cast to the parent object, the cast will be successful, but the reference cast will not have the child blueprint variables because of the way inheritance works. You have to cast to the child blueprint. You can't get around this.
@@WeirdOne19142 oh fr? the variable is created in the parent tho, its not a child only variable. Its just set in the child bps. Does that still not work? thanks for the respond btw!
Almost made it work..... I'm trying to cast to another actor to use a boolean in it. The other actor is a trigger zone which I made switch a bool on when walked through. I then want a thing to happen when the player walks through that zone. So I cast to the trigger and then have a branch. I then connected from 'As Trigger' from the cast and the condition of the branch with the boolean of the zone. But that gives me an error saying it can't find the bool. So.... I'm at a loss once more 😅
Why do you cast for this? Just use getClass, plug in the reference and there you go. For what you did in the video casting is absolutely unecessary. And usually you do have a variable that is at least the parent class of almost all acters you want to cast to. E.g. if you want have a circle, rectangle and a triangle then the parent class of all those 3 is shape so you if you'd do anything with triangle, circle, rectangle you'd cast to shape because shape has all functionality that those 3 have. If the objects have barely any similarites then don't use casting but interfaces instead. But what you did is kinda questionable to say the least. And this is not only Blueprint related btw, the concept applies for programming languages like C#, Java and even C++ as well. IK C++ has no interfaces but that doesn't mean you can not make them.
I spent two days on researching about how casting in Unreal works and this is by far the only video who explains it on a holistic approach. German excellence. :) Thank you for the video.
This tutorial totally made me understand such a crucial element of the Blueprints in Unreal -- Thank you!
Es ist wirklich beeindruckend wie gefühlt ganz TH-cam bislang daran scheiterte das mal sinnvoll zu erklären und man es unnötig schmerzhaft selbst lernen musste. Danke für das Video^^
Ich versteh's halt auch nicht, warum jeder denkt ein "Cast To Third Person Character" wird schon genügen... Hatte auch den gleichen Frust mit Blueprint Interfaces. Hab dazu jetzt auch ein Video oben, falls du da mal Probleme haben solltest. Cheers!
This was the most clear explanation of Casting Ive seen. Thank you! I finally get it :D
Finally someone who understands the frustration of opening an Unreal tutorial on TH-cam and the first 5 minutes is all about whiskers
Underrated tutorial I recommend this to anyone trying to learn about Unreal Engine! Thank you for this.
But you forgot to mention that you had to Pick the specific Jboy Actor inside the editor, or am i wrong?
I mean, if you just create the actor reference variable inside of the blueprint, the cast still wont know which exact blueprint you're talking about. You can see in the details panel what I am trying to say - at 3:35 after selecting your BP_JBoy, under "Default", there is the dropdown menu for your public actor reference variable and you had to put in "BP_Jboy2", or else it would say "none" and the cast would fail.
Just trying to understand, here - im not criticising
Yeah I agree. As a beginner trying to figure out what my problem was, that part was confusing to me. I'm not sure why he skipped over that part.
@@petarpehchevski3d338 well probably just a mistake while editing or something
thanks for pointing this out
hmm so how am I meant to create the variable then? I'm still confused
@@RMC_yeah, dont worry - blueprint communication IS really confusing in fact.
If you're trying to do replicate this tutorial, just know, that he forgot to show one step. He needs to set those variables that he exposed, inside the viewport.
If you're trying to get a grip of BP Communication in general, heres a tip; it really helped me to watch those learning streams vom Unreal Engine by Zach Parrish. Search for the Topic "Blueprint Communication" and also try to understand "Blueprint Hierarchy", that helped me a lot as well
You’re a life saver. Been struggling with this for years. Sub
Just a genuine thank YOU!!!! in 5m I learn more than in the past month....
I still get a cast failed :( trying to cast to a BP containing a static mesh.
thanks for this videooooo dude you helped me a lot
I understand now. Thank you! For anyone who still got stuck, make sure to use the picker tool on the variable and pick the blueprint that youre casting to.
Man thank you! Someone finally answered my question in a way that is more complete. most of the video about casting is just to cast the player character to object without out explaining it
Thank you for this, the concept now makes sense
I was looking for hours you are a blessing tysm
The best way to explain something is to voice the frustration and the confusion that is expected for that thing to cause :)
Finally someone who can help, especially with the object matter. :)
oh my god you're both hillarious and awesome with that charts
THANK YOU SO MUCH I COULD NOT HAVE FIGURED IT OUT WITHOUT YOU
Still didn’t work for me. Not sure what I’m doing wrong. I keep getting cast failed. I have it spawning but still didn’t work. Very frustrating.
this was so short but so helpful. i understand calling objects so much more now
I've been struggling with this for so long, thanks a lot!
This was most helpful about the case, thank you.
You're a great teacher dude!
omfg i love your style of teaching
Thank you my dude! everyone just cast to 3rd person is insane
you just cleared up months of confusion for me!
Man this was so helpful, thank you!
O M G MAN! Thank you A LOT! Thet was THE BEST video on this topic on whole youtube.
One word. Genius!
Perfect Tutorial! Thank you
Just what I needed thank you! Literally watched 3 videos before yours that all used the cast to character example.
OMG! FINNALY! Thank you bro. Just thank you. I wish happiness to you and your family. May the Lord keep you. You are the best person on this earth.
That stupid Object pin was driving me nuts. Now I know what to plug into it.
If you cast to Class (i.e. the purple blueprint node) then you're in another world of pain. I still don't understand what that's even for.
Thank you very much, I have been looking for this for a long time
Wow, the object pin was exactly my problem. I'm super new to Unreal and thought it would take forever to find the answer and this was the first video. Thanks!!
This is why programming helps. The cast node does not know what to cast to so it needs a instance of an object. Obivously, i mean you have to determine what instance should be casted to what type of class. It is not too crazy tbh. In programming language it is exactly the same.
Help!! Still doesn't work (cast fails) because you set the value of them to the blueprint class without telling us how. At 2:53 you mention you made it editable so then you can edit it in the viewport, but I am doing this in the gamemode class so changing the value in the viewport is not possible. In the details pane it's labeled 'none', and I CANNOT change this value whatsoever. Like how do I connect it in the details pane???
Wow, finally someone explained it! And did it perfectly! Thanks :)
What a way to explain. Amazing video!
this info was extremely helpful, thank you very much
this is super helpful but im still unsure how to do this with a widget? when exposing the varaiables at 2:50 I can't then edit them in the Outliner/Details window since they're not in the scene :(
did you find a way to do it with a widget?
Yes! This is perfect great work. I had so much trouble with this too and you're right everyone just says get third person character. What a cop out, they never explained why. I bet even they didn't know tbh
I try with the type "character " but it doesn't work :(
Thank you! I was stuck for like 3 hours!
Ur a hero
Nice video about whiskers bro). Try to make one about casting.😅
I actually found out if you only have one thing with that name you can just connect the node to itself 😅 connect the as 'whatever' to the object pin✌️
Thank you so much. Life saver 🙌
You save my life!
Need more tutorials presented this way. Thank you !
Thank you so much for this video ❤️❤️
hi this is great but it doesn't work for me please help
Thank you!
wow thank you. can you show us example with using animation blueprint in an actor blueprint?
Amazing
THANK YOU!!!!
Greate explain dude
i am trying to get a health variable from an actor so I can make a heath bar above to AI I needed to cast to my Actor So I could get the variable but after using an object reference it lets me get the variable but doesn't show the percentage correct. can anyone please help me.
LMAAAAAAAAO, you named the exact reason why i ended up here. I KNOW I CAN CAST TO A THIRD PERSON CHARACTER! haha but not im staring at the blank void ripping slowly into the heart of my existence called "object"
thank you so much
Goob very good example
thank you,thank you,thank you
yeah nice job dude!
Hey! Auch wenn das Video schon etwas älter ist:
Wenn ich eine Funktion habe, die z.B. ein ItemSet benötigt, kann ich dann auch einfach nur eine Variable erstellen, die den Typ des ItemSets hat? Ohne dafür eine Referenz zu benötigen?
Also angenommen:
EquipItemSet ist eine Funktion und als Input benötigt sie das ItemSet.
ItemSet ist eine File, die bassierend auf einer C++ Klasse erstellt wurde (ItemSet)
z.B. Test_ItemSet.uasset (ist ein ItemSet)
Würde ich dann einfach eine Variable erstellen, die: Test_ItemSet.uasset als Variable Type hat?
Oder muss ich noch eine Objektreferenz dafür erstellen? (Irgendwie über die Asset Registry oder so)
Weil die Variable an sich, ist ja "leer"?
thanks man
What about spawned objects?
Thankk you very much dude
how to give a tag on objects?
Thanks
OMG BEST TUTORIAL EVER MADE FOR IDIOTS LIKE ME, FINALLY UNDERSTAND :D THANK YOU SUBS AND LIKED
fixed may problem this video
Thank you SO much T_T
LEGEND..!
Cast on Level blueprint fail to me
is it work on 5.4?
Would this be a way to Combine two gamemodes?
Excellent video really helps understanding the fundamentals...I am still stuck though I'm trying to reference a widget BP inside of a component BP but I cant find an object that works, "UserWidget" object doesnt work?
When you create the widget, save the reference as a variable - for instance creat the widget in the game mode and then promote it to a variable. Then get the game mode. Then cast to the game mode. Then access the widget variable.
@@WeirdOne19142 What if you dont have a game mode?
@@IoSkyBoyoI you have to have a game mode. If you don't make one, unreal gives you a default one.
@@WeirdOne19142 A year later but thanks for your comment dude, you helped me a lot
So I’m made ammo current ammo and a box that’s attached to a blueprint but when I cast the box to my rifle nothing happens I hope this is helpful but if your open to helping let me know
Tutorial is not complete. Per usual. Just read the comments....
thanks, i understand now but now my cast still just fails, im trying to read a value from a child bp but casting to the parent and doin this trick fails the cast
If you cast to the parent object, the cast will be successful, but the reference cast will not have the child blueprint variables because of the way inheritance works. You have to cast to the child blueprint. You can't get around this.
@@WeirdOne19142 oh fr? the variable is created in the parent tho, its not a child only variable. Its just set in the child bps. Does that still not work? thanks for the respond btw!
Almost made it work..... I'm trying to cast to another actor to use a boolean in it.
The other actor is a trigger zone which I made switch a bool on when walked through. I then want a thing to happen when the player walks through that zone.
So I cast to the trigger and then have a branch. I then connected from 'As Trigger' from the cast and the condition of the branch with the boolean of the zone. But that gives me an error saying it can't find the bool. So.... I'm at a loss once more 😅
@@jobenco5757
not exactly...
just made my trigger zone do everything I wanted the actor to do.
"Get Actor of Class" can work better sometimes.
Or cast to the Class instead of the Object.
Sub'ed🎉
get player character makes another problem and that is multiplayer :( thanks a lot
Awesome tutorial bro! Thank u so much
Wow, that didn't help at all. Thanks.
Welcome to mfs trying to teach unreal
super witzig erklärt 🙂 grüße
you son of a bitch this was actually gold right here fuckin cheers!!!!
explanation which even idiots understand. Exactly what i want :-)
why is this tutorial called how to cast when in reality you're explaining the object wildcard ?
Genial
so this just straight up doesn't work wtf.
Why do you cast for this? Just use getClass, plug in the reference and there you go. For what you did in the video casting is absolutely unecessary. And usually you do have a variable that is at least the parent class of almost all acters you want to cast to. E.g. if you want have a circle, rectangle and a triangle then the parent class of all those 3 is shape so you if you'd do anything with triangle, circle, rectangle you'd cast to shape because shape has all functionality that those 3 have. If the objects have barely any similarites then don't use casting but interfaces instead.
But what you did is kinda questionable to say the least.
And this is not only Blueprint related btw, the concept applies for programming languages like C#, Java and even C++ as well. IK C++ has no interfaces but that doesn't mean you can not make them.
Thats not the point of the video.
Tbh i got so tired to understand this command. Just use interfaces guys
2:44 no
2:30
So close to being a great tutorial, but then you just skip over what to do if the actor doesn't exist before you cast to it.
Easy: Create it befor casting to it.
does not work
🙏
watched whole vid and still fails
interesting to understand this incredible confusing cast to