UE4 - How to get a BP variables when that BP is not in the level?

I would like to get some variables from a BP, without adding the BP to the level, is that possible?

Normally you add the BP to the level and then “get actor off class”, from there you get all variables, but when that BP is not in the level, I can not return it’s variables.

You need to have an instance, otherwise there’s no variables to get.

1 Like

get some variables from a BP, without adding the BP to the level

If you have no instance spawned (in any of the ways there exist), you can still get class defaults, though:

2 Likes

Great idea, thanks!