I’m new to Unreal and I’m struggeling to pass variables from an actor blueprint to an animation blueprint. When I’m using a pawn instead of an actor everything works but I want to apply animations to a metahuman which is an actor so how can I make this work?
I also tried to pass the variables from the actor to the pawn to then transfer them to the animation blueprint also without success. I read sth about that for this the pawn has to “own” the actor but I don’t know how to achieve this. I guess they have to be related to each other somehow so is that what is missing here?
You’re right it now works using this node! I tried it before but probably had sth else wrong then because it didn’t work before. So thank you! Can you explain why this node is needed?
Okay one last question: I created a variable from the Omar Blueprint and tried to plug that one into the Cast node which didn’t work. Is the difference that the Get Owning Actor returns the specific Omar instance that is in my scene while the Omar variable returns the general Omar blueprint that doesn’t have the animation tied to it?
Where do you assign value to the Omar variable? It’s almost 100% null. The blue note is telling you there is no need to cast. Have a look at my previous post:
Ahh I see it makes sense now! The variable didn’t have a value assigned, of course it’s not going to work without setting it first. Thanks again a lot, you really helped me out!