Blackboard and TArray?

Hi! May anyone point to example, on how to use TARRAY with blackboard via C++ properly? I google and tried for hours, but always end up with the errors. Thanks!

I assume, for blueprints, there is still no way of doing so, without creating some array holding class?

Blackboard doesn’t support TArray.

If you need a list of objects, you’ll have to create a class, add the TArray to that class, then add that class as an “object” type into blackboard, cast that object into your class type, then access the array through that class. It’s a really rough, roundabout way to do it and highlights a limitation of blackboards.

Got it, thank you.