Best Practice For Spawning Actors in a Specific Order
lunabun
Member Posts: 7
Hey Everyone,
I'm working on a space invaders type game where enemies fall from the sky. I want to have them fall from different locations one to three at a time, in a specific pattern each level. There would be about 15-50 enemies per level so I'm trying to figure out the best way to set this up. Any suggestions?
Thanks,
Lunabun
I'm working on a space invaders type game where enemies fall from the sky. I want to have them fall from different locations one to three at a time, in a specific pattern each level. There would be about 15-50 enemies per level so I'm trying to figure out the best way to set this up. Any suggestions?
Thanks,
Lunabun
Answers
every 1 second
spawn actor - amount random(1,3)
So every second, it will spawn 1, 2, or 3 actors.
You can also change the values