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

  • jamie_cjamie_c ImagineLabs.rocks Member, PRO Posts: 5,772

    Use two spawn actor behaviors.

  • SocksSocks London, UK.Member Posts: 12,822
    edited November 2016

    When Space key is pressed
    Change 'Count' to 'ammunition'
    --Loop (max loops / frame 10) - While Count > 0
    ----Spawn Ball
    ----Change Count to Count-1

    ...

Sign In or Register to comment.