Spawning a set number of actors at random target positions

Hi folks,

What’s the best solution for spawning a set number of actors (for example 5) at random target positions that I’ve defined in my level?

I’d like to to pick different positions each the game restarts based on 20 or so target positions.

Many thanks

P

HI

Store the locations in a Vector or Transform Array.

Get random number / INT in Range and use the number to pick one in your array and use that location to spawn.

Thanks alot for your help - I’ll check out the link.