Can BP's have pointers?

Can I make a ‘pointer’ variable in a BP that references a structure variable, so that when I change a value in the structure variable, the pointer variable stays up to date?

No, structures are value types. If you need this behavior, wrap the struct in an UObject, or use a UObject instead of a struct.

1 Like