How to get variable from anim bp?

Hello. I have anim bp with “action” variable


and I want to get access to that variable from actor bp which is using this anim bp.

How can I do it? I’ve tried to make variable public but I don’t see any effect of it.

Those are two separate blueprints and two distinct objects so you cannot access them directly. In this case its always recommended to read data from character in Anim BP and not otherwise . So make your variable in the character and read it inside anim BP event graph using Get Character or Get Pawn nodes , Do a cast node to your character blueprint and access the variable in anim bp.

Thank you, it works.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.