Spawn multiple actors at once
Hi,
I'm trying to build an arkanoid type game where there's more than one ball.
So, let's say your ammunition is at 2, once player taps screen two balls would come out at once.
Right now I'm at a point where you tap to release one ball at a time.
Screenshot of what I have so far
https://drive.google.com/file/d/0B75hI7UTMByraTNzRUh5YmlJNDg/view?usp=sharing
Thank you!
Comments
Use two spawn actor behaviors.
When Space key is pressed
Change 'Count' to 'ammunition'
--Loop (max loops / frame 10) - While Count > 0
----Spawn Ball
----Change Count to Count-1
...