BP Object Array??

Hey All,
How would one create an object array? I am creating a store that will sell randomly generated items, which I want to pull from an array so that I can add available items as the game progresses but when I go to make an array I can only make arrays of one object or property references, neither of which seem to be able to be used for this. Any help or guidance would be greatly appreciated.

Hey @TruffleExplorer!

So you can make an array of object instances, which means existing things that are already part of the game, but I think in this case you need to use an array of object classes, which can then be used to populate your store. :slight_smile:

2 Likes

Thanks MindBrain!