Spawn multiple actors at once
kristen.saluma@hotmail.com
Member Posts: 3
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.
http://jamie-cross.net/posts/ ✮ Udemy: Introduction to Mobile Games Development ✮ Learn Mobile Game Development in One Day Using Gamesalad ✮ My Patreon Page
When Space key is pressed
Change 'Count' to 'ammunition'
--Loop (max loops / frame 10) - While Count > 0
----Spawn Ball
----Change Count to Count-1
...