Hi, Can anyone tell me how are array items arranged in an array blueprint, for example if i have 50 static meshes in the scene with a tag “pick_item” and in blueprint I get all actor of static mesh class and pass it through “actor has tag” node and make an array of all those items with “pick_item” tag, what will be the sorting order inside the array of all those items? would it be based on the name of those item in the scene? (arranged alphabetically in the array)
Thanks
Best to assume it’s random… or sort it yourself in some way.
If you want them in a specific order, you could always tag them with one tag to ‘pick’ and another which gives the order
( you could also use a bit of BP to tag them all in order - to save time )
I know, just wanted to make things easy by picking objects with tag instead of manually populating array of 100s of items. thanks anyway.