Change Level When 3 Actors have been touched?

JamieOneilJamieOneil Member Posts: 877
edited November -1 in Working with GS (Mac)
I have a level with 3 actors and i want the level to change when those 3 actors have been touched and destroyed ? and then on the next level there would be 4 of then.....

thanks

Comments

  • mynameisacemynameisace Hull, UKMember Posts: 2,484
    You could make an integer attribute that counts +1 every time one is destroyed then when attribute = 3 change attribute back to 0 then change scene?

    Ace
  • YouKnowMeYouKnowMe Member Posts: 74
    Global Attribute: Touched

    In actor:

    Rule; When all are valid
    when touched
    inside

    (Destroy)
    (Change attribute: Touched to touched+1)

    In Background actor (or any other actor):

    Rule
    When Touched=3 (Change scene)
Sign In or Register to comment.